Rails 电子邮件名称标签
Rails email name label
我正在使用 Rails + Mandrill(通过 SMTP)发送电子邮件。
电子邮件是从 foo@example.com
发送的,但我希望用户在收到邮件时看到一个像 John Doe
这样的好听的名字,而不是电子邮件地址。这可以通过rails实现吗?
在你的邮件程序中 class 放一些像
default from: 'John Doe <foo@example.com>'
例如
class MyMailer < ApplicationMailer
default from: 'John Doe <foo@example.com>'
def example_mail
...
end
end
我正在使用 Rails + Mandrill(通过 SMTP)发送电子邮件。
电子邮件是从 foo@example.com
发送的,但我希望用户在收到邮件时看到一个像 John Doe
这样的好听的名字,而不是电子邮件地址。这可以通过rails实现吗?
在你的邮件程序中 class 放一些像
default from: 'John Doe <foo@example.com>'
例如
class MyMailer < ApplicationMailer
default from: 'John Doe <foo@example.com>'
def example_mail
...
end
end