HTML 电子邮件缺少附件

标签 html ruby email

当我使用 Ruby 1.92 发送 HTML 电子邮件时,某些电子邮件客户端没有显示附件。附件应为 pdf 文件。我可以在 Exchange 服务器上的 Outlook 2010 中看到附件,但在雅虎网络邮件中看不到。

如果我只是禁用 HTML 正文,一切正常。

代码如下:

require 'mail'

body_text = File.read('body.html')
subject_text = File.read("subject.txt")

Mail.defaults do
    delivery_method :smtp, { :address => "servername", :port => "25", :user_name => "name", :password => "password", :authentication => 'login'}
end

message = Mail.new do
    from ARGV[0]
    to ARGV[1]
    subject subject_text

    # if I comment out this section everything works fine
    html_part do
        content_type 'text/html; charset=UTF-8'
        body body_text
    end

    add_file ARGV[2]
end

message.deliver!

这是 HTML 源代码:

<html>
<body>
<p style="font-family:trebuchet ms,helvetica,sans-serif;">Hello, <br />
<br />
This email was sent from Geiger and contains your A/R aged report for date. For any questions please call the Geiger helpdesk @ 207-755-2510<br />
Technical Details:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sent from: Server_Name<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sent To: rep_id<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Original Email: to_email<br />
<br />
Helpdesk Please forward all enquiries to so and so<br />
<br />
<img src="http://www.geiger.com/logo.gif" /></p>
</body>
</html>

这里是 message.to_s 的输出:

Date: Tue, 22 Nov 2011 08:22:52 -0500

From: wstaples@consoto.com

To: WSTAPLES@consoto.COM

Message-ID: <4ecba22c9ecb3_1cec974ab4171df@GBFA100016.mail>

Subject: Your  report for November, 2011 - consoto Gets it!

Mime-Version: 1.0

Content-Type: multipart/alternative;

 boundary="--==_mimepart_4ecba22c550e5_1cec974ab416812";

 charset=UTF-8

Content-Transfer-Encoding: 7bit







----==_mimepart_4ecba22c550e5_1cec974ab416812

Date: Tue, 22 Nov 2011 08:22:52 -0500

Mime-Version: 1.0

Content-Type: text/plain;

 charset=UTF-8;

 filename=test_attatchment.txt

Content-Transfer-Encoding: 7bit

Content-Disposition: attachment;

 filename=test_attatchment.txt

Content-ID: <4ecba22c75492_1cec974ab416991@GBFA100016.mail>



This is a test



----==_mimepart_4ecba22c550e5_1cec974ab416812

Date: Tue, 22 Nov 2011 08:22:52 -0500

Mime-Version: 1.0

Content-Type: text/html;

 charset=UTF-8

Content-Transfer-Encoding: 7bit

Content-ID: <4ecba22c92576_1cec974ab41707b@GBFA100016.mail>



<html>

<body>

<p style="font-family:trebuchet ms,helvetica,sans-serif;">Hello, <br />

<br />

This email was sent from consoto and contains your  report for Nov 2011. For any questions please call the consoto helpdesk @ 207-755-2510<br />

Technical Details:<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sent from: GBFA100016<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sent To: BDB<br />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Original Email: WSTAPLES@consoto.COM<br />

<br />

Helpdesk Please forward all enquiries to Wesley Staples or Shawn White<br />

<br />

<img src="http://www.consoto.com/logo.gif" /></p>

</body>

</html>





----==_mimepart_4ecba22c550e5_1cec974ab416812--

最佳答案

问题出在你身上

Content-Type: multipart/alternative;

当邮件的内容类型为“multipart/alternative”和附件时,某些邮件程序不会更正解析邮件。在这种情况下,您必须使用此结构创建消息:

 - multipart/mixed
  - multipart/alternative
 ...

你可以这样做:

unless mail_attachments.blank?
  mail.part :content_type => "multipart/alternative"  do |p|
    p.text_part = text_part
    p.html_part = html_part
  end
  mail_attachments.each do |file|
    mail.add_file file.local_path
  end
else
  mail.text_part = text_part
  mail.html_part = html_part
end

关于HTML 电子邮件缺少附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8217213/

相关文章:

ruby - "||="操作数在ruby中代表什么

ruby - 通过 Net::HTTP 在 Ruby 中发送 http post 请求

javascript - 仅使用正则表达式查找除电子邮件地址之外的所有内容

javascript - Firefox 不会更新对 CSS 动画的更改

javascript - HTML5 拖放内容类型?

java - Java开发人员的Ruby类定义说明

ruby - 如何在 Mail gem 中使用 body erb 模板?

html - CSS:透明指针,就像 App Store 上的一样

javascript - AngularJS包含模板不运行主JavaScript

php - 使用 codeigniter 电子邮件类发送电子邮件