Ruby Net :: SMTP – 使用密件抄送:收件人发送电子邮件

前端之家收集整理的这篇文章主要介绍了Ruby Net :: SMTP – 使用密件抄送:收件人发送电子邮件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用 Ruby Net :: SMTP发送电子邮件.例程
send_message( msgstr,from_addr,*to_addrs )

在我的代码中发送电子邮件效果很好,但是从API这个目前还不清楚如何将电子邮件发送到需要盲目复制的人员列表(密送:).

我错过了什么,或者用Net :: SMTP是不可能的?

解决方法

send_message的to_addrs参数指定地址的包络.在to_addrs中包含地址对包含在消息头中的to和cc地址没有影响.

要成为收件人,请在to_addrs参数中包含该地址,但不要将其包含在msgstr的标头中.例如:

msgstr = <<EOF
From: from@example.org
To: to@example.org
Cc: cc@example.org
Subject: Test BCC

This is a test message.
EOF

Net::SMTP.start(smtp_server,25) do |smtp|
  smtp.send_message msgstr,'from@example.org','to@example.org','cc@example.org','bcc@example.org'
end

这将向三位收件人发送电子邮件:to@example.org,cc @ example.org和bcc@example.org.收到的邮件中只能显示to@example.org和cc@example.org.

原文链接:https://www.f2er.com/ruby/269178.html

猜你在找的Ruby相关文章