Hello,
Can you please advise an easy to use and reliable php mail class or library?
The requirements are :
- Multipart/alternative emails (HTML/non-HTML);
- Attached files;
- Attachments created from script output;
- Multiple languages/encodings (unicode?)
- Open Source (php)
Sincerely,
Please advise a php mail class (library)
Moderator: General Moderators
-
tim_kinder
- Forum Newbie
- Posts: 8
- Joined: Sun Jan 22, 2006 7:48 pm
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
phpmailer?
phpmailer.sf.net - not absolutely sure on the multilanguage support, but I don't think it doesn't support them.
phpmailer.sf.net - not absolutely sure on the multilanguage support, but I don't think it doesn't support them.
-
tim_kinder
- Forum Newbie
- Posts: 8
- Joined: Sun Jan 22, 2006 7:48 pm
Add string attachment.tim_kinder wrote:I'm reading it's tutorial right now, but can't see how to create attachments from script output, rather than reading from file.feyd wrote:phpmailer?
Alternatively, you could channel the script output to a temporary file, attach (AddAttachment) it to phpmailer, and then delete it.
Did you also read the tutorial on http://www.phpfreaks.com/tutorials/130/0.php? I found it very useful, and all examples worked for me. Including attachments etc.