ポニーを使用して Ruby Web サイトに単純なフォームを実装しようとすると、「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
}
}