1

Topic: Broadcast Email Error

I received the following error message when I used Broadcast Email for the first time. How do I correct this?

Warning: ob_start(): output handler 'ob_gzhandler' cannot be used twice in /nfs/cust/6/44/97/579446/web/IDRSBBS/include/functions.php on line 926
An error was encountered
Error: Unable to send e-mail. Please contact the forum administrator with the following error message reported by the SMTP server: "501 5.1.3 Path data: Missing "@" from mailbox definition ".

Re: Broadcast Email Error

Probably, one of your users is registered with an invalid e-mail. You'd have to go through the users and check which one. The easiest way would be to run an SQL query and fetch all e-mail addresses. Something like:

SELECT Username, Email FROM Users

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: Broadcast Email Error

http://punbb.org/forums/viewtopic.php?id=12695

helped me.

~James
FluxBB - Less is more

4

Re: Broadcast Email Error

Smartys wrote:

Bekko: If the email is in the database, we can assume it's valid already
Try this though
FIND

$mail_to        = $recipientname." <".$recipientemail.">";

REPLACE WITH

$mail_to        = $recipientemail;

resolved my problem...many thanks

Re: Broadcast Email Error

No problem
Rickard: you might want to put out an updated version of the plugin with the fix.

Re: Broadcast Email Error

How to use Broadcast Email ? I download the ZIP file and the only one file I found is a php file ? Is there any readMe File ? Any other explanation to use Broadcast Email ???

7 (edited by Dr.Jeckyl 2007-03-10 06:55)

Re: Broadcast Email Error

put that file(AP_Broadcast_Email.php) in the plugins folder of your forums root. then goto your admin section and you should see the link on the left panel at the bottom.

~James
FluxBB - Less is more

8 (edited by Grant 2007-04-13 00:03)

Re: Broadcast Email Error

Downloaded Broadcast Email a few hours ago. I fixed it myself but now I'm getting a time out error with a larger database. How  can I tell if I've sent out any emails? I'm worried about sending out duplicates.

Re: Broadcast Email Error

Try adding this after the first <?php tag:
@set_time_limit(0);

10

Re: Broadcast Email Error

Thanks smile

This one seems to work well.