2012-03-06 196 views

回答

1

这实际上可以使用Ruby on Rails在应用程序内进行管理。虽然不确定Google Apps。无论如何,我通过把我的user_mailer.rb放在里面工作:

class UserMailer < ActionMailer::Base 
    default :from => "'MySite.com' <[email protected]>" 
    def welcome_email(user) 
    @user = user 
    mail(:to => user.email, :subject => "Welcome to MySite") 
    end 
end 
1

AFAIK,Gmail(或Google Apps)不允许您在中继电子邮件时更改您的姓名。但是,您可能可以进入邮件设置(登录到Google Apps信息帐户)并在那里更改名称。

相关问题