我正在尝试使用 pony 为我的 ruby 网站实现一个简单的表单,但我不断收到错误消息“535-5.7.1 用户名和密码不被接受”。我在正确的字段中输入了我自己的 gmail 用户名和密码。
pony.rb 中的代码
Pony.options = {
:to => 'myusername',
:via => :smtp,:
:via_options => {
:address => 'smtp.gmail.com',
:port => '587',
:enable_starttls_auto => true,
:user_name => 'myusername',
:password => 'mypassword',
:authentication => :plain, # :plain, :login, :cram_md5, no auth by default
:domain => "localhost.localdomain" # the HELO domain provided by the client to the server
}
}