I got an rails 4 application with following mailer configuration:
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_url_options = { host: 'myhost.com' }
config.action_mailer.perform_deliveries = true
config.action_mailer.smtp_settings = {
:enable_starttls_auto => true,
:address => 'smtp.myhost.com',
:port => 587,
:domain => 'myhost.com',
:authentication => :login,
:enable_starttls_auto => false,
:tls => false,
:openssl_verify_mode => 'none',
:ssl => false,
:user_name => "myusername",
:password => "mypassword"
}
Every time i try to send an mail with an testing mailer setup:
class TestMailer < ActionMailer::Base
default :from => "[email protected]"
def welcome_email
mail(:to => "[email protected]", :subject => "Test mail", :body => "Test mail body")
end
end
TestMailer.welcome_email.deliver
I got this exception:
ArgumentError: An SMTP To address is required to send a message. Set the message smtp_envelope_to, to , cc, or bcc address.
Is it possible that i forget something to set.? And i can't find an configuration option for "smtp_envelope_to"
The error message is not about the SMTP envelope, but about the sender:
An SMTP To address is required to send a message
the rest is just a generic message.
Something in your [email protected]
is not working.
Do you use a real, working address? If not, try with one.
If you use sidekiq+actionmailer. Be careful, while sending email using hash. I was doing something like this MyWorker.perform_async("var1", {email: '[email protected]', var2: 'test1234'})
I banged my head for couple of hours, why it is throwing the above error. Because in the perform_menthod hash[:email] is nil. You need to use hash["email"] to receive the email. I do not know, the reason. But it helped me to get rid of this error.
Is :to => '[email protected]'
how it is in your failing environment? If it's not a hardcoded email address, do make sure that a variable containing the to-address is not blank.
You don't have to set Mail::Message#smtp_envelope_to
explicitly. It can guess it from its recipients, ie. Mail::Message#destinations
(to + cc + bcc), but it doesn't seem to have any.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With