我用Rails发了一封电子邮件,如下所示:
ActionMailer::Base.mail(
from: "[email protected]",
to: "[email protected]",
subject: "test",
body: "test"
).deliver
我希望主体包含[test](https://ham.com)
,但是这个markdown没有被解析,而且<a href="https://ham.com">test</a>
也不工作。
我如何格式化我的网址,使它得到正确的格式?
1条答案
按热度按时间c3frrgcw1#
如果你希望它以HTML的形式发送,那么你需要提供
Content-Type
头(content_type: "text/html"
),尽管最好遵循mailer子类的常规方法,并使用模板。