0

我正在尝试使用 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
}
}
4

1 回答 1

0

请参阅下面的工作代码。刚刚用我的gmail测试了这个。

Pony.mail(:to => 'someone@acme.com', :via => :smtp, :via_options => 
{
    :address => 'smtp.gmail.com',                     
    :port => '587',
    :enable_starttls_auto => true,
    :user_name => 'yourgmail@gmail.com',
    :password => 'yourpass',
    :authentication => :plain,
    :domain => "HELO",
 },
:subject => 'Your Subject goes here', :body => "bla bla bla or #{$body}",       
:attachments => {"yourfile.txt" => File.binread("c:/ruby193/bin/yourfile.txt")    
}
)

祝您好运,如果您需要进一步的帮助,请告诉我!

于 2013-03-13T16:02:41.693 回答