I have used the pop mailer for ruby (net/pop)
The problem I am having is that some of the emails are in HTML format is there a way to specify that I want plain text ?
Thanks, Alex
|
I have used the pop mailer for ruby (net/pop) The problem I am having is that some of the emails are in HTML format is there a way to specify that I want plain text ? Thanks, Alex |
|||
|
|
|
Emails can come in different formats. The most common is MIME which allows an email to contain multiple "parts". Commonly an HTML and a plain-text part. However, you can not control which parts the email actually contains. This can only the sender for obvious reasons. You can however use ruby to get the plain text part if one is present or try to generate some representation of that from the HTML part. The following condensed example to get the plain text part of an email is from the MailHandler model and the POP3 module of Redmine (licensed under GPLv2).
|
|||
|
|