4 messages in net.sourceforge.lists.courier-usersRe: [courier-users] AH HA!!!
FromSent OnAttachments
Randall ShawAug 2, 2002 2:38 pm 
secure42Aug 2, 2002 4:03 pm 
Randall ShawAug 3, 2002 10:29 am 
secure42Aug 4, 2002 6:27 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] AH HA!!!Actions...
From:Randall Shaw (cour@thewebchoice.com)
Date:Aug 3, 2002 10:29:39 am
List:net.sourceforge.lists.courier-users

secure42 wrote:

Ok, you workaround the problem, but you did not solve it!! Problem is that you are composing a mail that contain not ascii characters and you have to add the property MIME headers on it. PHP mail() functions do not add them by itselfs, so you have to add them.

This message will work properly:

mail("joec@example.com", "My Subject", "Message");

but this message is not RFC compliant: mail("joec@example.com", "My Subject", "Some other characters: ñ, ü");

Many php apliccations out there (PHPNUKE, POSTNUKE ...) send not rfc mails and should be fixed.

Hehehe.

Well, its actually a lot of work, as the websites support those chars, and those chars get sent in information request emails from php etc from mysql etc etc.

Hmm, maybe something I will attempt to write for php mail() function to auto add the proper mime headers for funky ascii use. *shrug* ... more work than I am willing to attempt right now ;-)

Thanks for the wake-up slap in the face though =)