我有一个应用程序可以让卖家向他的客户发送电子邮件。如何将邮件的发件人设置为卖家的邮箱?
例子:
电子邮件 A:{来自:“steve@domain.com”,至:“client@whatever.com”} 电子邮件 B:{来自:“andrew@other-domain.com”,至:“blabla@client” .com }
我有一个应用程序可以让卖家向他的客户发送电子邮件。如何将邮件的发件人设置为卖家的邮箱?
例子:
电子邮件 A:{来自:“steve@domain.com”,至:“client@whatever.com”} 电子邮件 B:{来自:“andrew@other-domain.com”,至:“blabla@client” .com }
如果您使用的是 ActionMailer:
http://api.rubyonrails.org/classes/ActionMailer/Base.html
您会看到,在该mail
方法中,您可以提供 to、bcc、from、subject、body 等参数!
使用他们的例子:
class ApplicationMailer < ActionMailer::Base
def welcome(recipient, sender) # where sender is a String like "an-email@address.com"
mail(:to => recipient, :from => sender, :subject => "Here is what we look like")
end
end