Pony.mail(:to => ad.to_s, :via => :smtp, :via_options => {
:address => 'smtp.gmail.com',
:port => '587',
:enable_starttls_auto => true,
:user_name => 'login',
:password => 'pass',
:authentication => :plain, # :plain, :login, :cram_md5, no auth by default
:domain => "localhost.localdomain", # the HELO domain provided by the client to the server
:headers => { 'Content-Type' => 'text/plain' },
},:subject => 'detail',
:body => IO.read('body.txt'),
:attachments => {"file.pdf" => File.read("./pdf/" + at.to_s)}
)
文件变得难以理解,失真(pdf文件的修改版本没有解决问题1.4-1.6)..出了什么问题?错误的哑剧类型??
答案 0 :(得分:1)
看起来像编码相关的问题。 请尝试使用File.binread。
答案 1 :(得分:0)
内容类型不应该是明白的。让小马为你解决(多部分)