We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
submitted by hpyhacking, I copied from tomlion#11
mails_viewer (0.1.1)
below is mail sample
Date: Fri, 19 Apr 2013 14:29:19 +0800 from: "Name" [email protected] To: [email protected] Message-ID: <[email protected]> Subject: Subject Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit
I use below setting to my ActionMailer
default :from => "\"Name\" [email protected]"
This mail can show in Gamil, but mails_viewer raise error
undefined method join for "\"Name\" [email protected]":String
The text was updated successfully, but these errors were encountered:
@hpyhacking You can try to replace mail.from.join(', ') with Array.wrap(mail.from).join(', ') to fix this
mail.from.join(', ')
Array.wrap(mail.from).join(', ')
Sorry, something went wrong.
PR to fix this: #9
No branches or pull requests
submitted by hpyhacking, I copied from tomlion#11
mails_viewer (0.1.1)
below is mail sample
I use below setting to my ActionMailer
This mail can show in Gamil, but mails_viewer raise error
undefined method join for "\"Name\" [email protected]":String
The text was updated successfully, but these errors were encountered: