Tôi có một đường ray 4 ứng dụng với cấu hình bưu phẩm sau:ArgumentError: Một SMTP Để giải quyết được yêu cầu để gửi tin nhắn. Đặt smtp_envelope_to tin nhắn, để, cc, hoặc bcc quyết
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"
}
Mỗi lần tôi cố gắng để gửi một email với một thiết lập thử nghiệm bưu phẩm:
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
tôi có ngoại lệ này:
ArgumentError: An SMTP To address is required to send a message. Set the message smtp_envelope_to, to , cc, or bcc address.
có thể rằng tôi quên cái gì đó để thiết lập.? Và tôi không thể tìm thấy một tùy chọn cấu hình cho "smtp_envelope_to"
Thx thất bại của tôi là một trọng tâm của một địa chỉ smtp mà đặt nó thành nil Oo – bulleric