Displaying 1 result from an estimated 1 matches for "forgotten_password_email".
2007 Nov 30
1
501 Bad Recipient Address Syntax
Hi,
I''m having a problem with sending email with ActionMailer.
My mailer looks something like this:
class PNGMailer < ActionMailer::Base
def forgotten_password_email (password_reset, user)
recipients = user.email
from = "my-BhBwXcZClc6A8/oj66qlCw@public.gmane.org"
subject = "Password Change Request"
body :first_name => user.first_name, :last_name => user.last_name
end
end
I have checked a million times that recipie...