发送邮件时指定姓名的问题
我的代码:--
from = @site.name + ", <no-reply@" + @site.url + ">"
mail(:from => from , :to => @recipient.email, :subject => "Invitation mail")
错误是:--
Net::SMTPSyntaxError (501 5.1.7 Bad sender address syntax
):
My code:--
from = @site.name + ", <no-reply@" + @site.url + ">"
mail(:from => from , :to => @recipient.email, :subject => "Invitation mail")
Error is:--
Net::SMTPSyntaxError (501 5.1.7 Bad sender address syntax
):
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
去掉
@site.name
和<
括号之间的逗号。你正在尝试这样做:当它应该是:
Get rid of the comma between
@site.name
and your<
bracket. You're trying to do this:When it should be: