I'm trying to generate EML files from PHP. Is there any library that will allow me to easily create them? I could find some ActiveX component on the internet but would rather use something more portable.
feedback
|
|
I think you don't need a library. It's just plain text (e.g. http://bitdaddys.com/example1.eml)
You can just output text with headers and save it using fwrite. For attachments use | |||
feedback
|
|
I ended up building the MIME message myself using this kind of template, where each field is replaced by a
Then creating the final message is quite simple using
| |||
|
feedback
|