I am setting up a new app to email via my gmail account and I kept
getting the following error:
Net::SMTPFatalError (555 5.5.2 Syntax error
It seems the Net::SMTP library no longer lets you use an email setup
like:
def setup_email(user)
recipients user.email
from "Nsight Development <nor...@nsightdevelopment.com>"
sent_on Time.now
content_type "text/html"
end
The angle brackets in the from were causing the syntax error.
Greg