Forum Moderators: coopster
I'm trying to make my mailing list that runs on PHP send out a preformated message. But I am running into a problem. The problem is that the preformated message is formated differently on every mail program. What I mean is that Eudora formats it differently from Outlook, Outlook Express, Netscape Mail and so on.
So, I want to know if anyone has been able to overcome this little dilemma and how they did it.
This is what I'm trying to do:
//E-Mail Content
$subject_from = "YDI Mailing List - ".$subject."\nFrom:Domain -mailinglist@domain.com\r\n";
$blank = " ";
$message_info = $message."\n\n
--------------------------------------------------------------------
¦ Visit [domain.com...] for all your wireless shopping needs. ¦\n
¦ You have recieved this e-mail because you signed up for it. ¦\n
¦ If you would like to stop receiving emails click below ¦\n
--------------------------------------------------------------------
[domain.com...]
//Send the customers form e-mail.
mail($mail_catch->email,
$subject_from,
$blank,
$message_info)
or exit();
Any way it should come out like this:
-----
¦BOX¦
¦BOX¦
-----
Thanks for any help given.
This is a plain text email, yes?
-G
--------------------------------------------------------------------\n
¦ Visit [domain.com...] for all your wireless shopping needs. ¦\n
¦ You have recieved this e-mail because you signed up for it. ¦\n
¦ If you would like to stop receiving emails click below ¦\n
-------------------------------------------------------------------- \n
Til I find a better way.
Thanks for any input given and for coming to the rescue :)