0

我正在mail使用以下非常简单的代码发送带有 gem 的电子邮件。当我发送电子邮件时,smtp_account.user_nameandsmtp_account.from可能是 eg support@thebestcompany.com。这会导致收件人看到他收到了一封电子邮件support(你知道,在他的收件箱中,他可以查看他最近 x 封电子邮件的概览)。我如何指定这一点,以便收件人看到更有趣的东西,例如The Best Company

require 'mail'

class SmtpMails

  def self.send_mails(smtp_account, to, subject, text)
    options = {
      :address              => smtp_account.address,
      :port                 => smtp_account.port,
      :domain               => smtp_account.domain,
      :user_name            => smtp_account.user_name,
      :password             => smtp_account.password,
      :authentication       => smtp_account.authentication,
      :enable_starttls_auto => smtp_account.enable_starttls_auto
    }

    Mail.defaults do
      elivery_method :smtp, options
    end

    mail = Mail.deliver do
      to to
      from smtp_account.from
      subject subject
    end
  end
end
4

2 回答 2

0
mail.from.addresses
mail.sender.address

试试这个。

于 2013-08-07T07:38:17.137 回答
0

在指定电子邮件的发件人时,您需要添加一些附加信息。下面的代码片段应该做你想做的事:

mail = Mail.deliver do
  to to
  from "The Best Company <#{smtp_account.from}>"
  subject subject
end

将电子邮件地址放在括号<>括号之间是为正在发送的电子邮件添加友好名称的标准做法。

于 2014-07-29T14:43:50.483 回答