vote up 0 vote down star
mail($to, $subject, $message, $headers);

the $header is:

From: from-me@mymail123.com
Reply-To: from-me@mymail123.com
Content-Type: text/html; charset=iso-8859-1
X-Mailer: PHP/5.2.5
MIME-Version: 1.0

I built $header with those line and I changed the order in every way, putting the Mime in the beginning, at the end, moving the from and reply around adding and deleting the X-mailer line. The results are the same. Gmail and yahoo are fine and the email is an empty attachment when set to outlook 2003.

Any thoughts?

sdfor

flag

You'd be better off using something like PEAR to send HTML emails – Greg Aug 18 at 20:13

3 Answers

vote up 0 vote down check

thanks for the thoughts. I tried phpMailer and got stuck on a "Could not instantiate mail function" error. I posted a question about that too.

But I figured out the problem. Outlook requires a doctype and that the HTML be correct. gmail will take almost anything. \

The following works!

//the message:

HTML EMAIL

//the headers $headers = "From: $from\n" $headers .= "Reply-To: $replyto\n" $header .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";

// the mail call mail($to, $subject, $message, $headers);

link|flag
vote up 0 vote down

Try adding some@email.com to the end of 'From: ...'. This email should be an actual email address on the server. Try checking your spam folder with what you have.

link|flag
vote up 1 vote down

Personnally, i prefer using phpmailer, available on sourceforge. It offers a much more robust mailing solution. I use it to send our email newsletter. Very reliable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.