将邮件设置为“来自” Rails 中任意值

发布于 2024-10-02 07:17:40 字数 1299 浏览 3 评论 0原文

我发送邮件的电子邮件地址是[电子邮件受保护] ,当我发送邮件时:

mail(:from=>'[email protected]', :to=>"[email protected]", :subject=>"Welcome!")

Gmail中的from字段显示noreply,所以我尝试使用以下内容:

mail(:from=>'domain', :to=>"[email protected]", :subject=>"Welcome!", :return_path=>"[email protected]", :reply_to=>"[email protected]")

上面的返回:

554 Message refused.

我想要的是 from 字段说的是“MyDomain”之类的东西。那么我该怎么做呢?

谢谢!

My email address from which I deliver messages is [email protected], when I send message with:

mail(:from=>'[email protected]', :to=>"[email protected]", :subject=>"Welcome!")

from field in Gmail shows noreply, so I have tried using following:

mail(:from=>'domain', :to=>"[email protected]", :subject=>"Welcome!", :return_path=>"[email protected]", :reply_to=>"[email protected]")

above returns:

554 Message refused.

All I want is that from field was saying something like "MyDomain" or whatever. So how do I do this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愚人国度 2024-10-09 07:17:40

您是否尝试使用

:from=>'MyDomain <[email protected]>'

如果这不起作用,则添加带有键“FROM”的标头和以下格式的值:

From_Name <from_email>

Did you try using

:from=>'MyDomain <[email protected]>'

If this doesn't work then add a header with key 'FROM' and value in following format:

From_Name <from_email>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文