gpt4 book ai didi

ruby-on-rails - 如何自定义 Mailboxer 电子邮件的模板?

转载 作者:行者123 更新时间:2023-12-04 05:47:42 25 4
gpt4 key购买 nike

它会自动发送电子邮件,上面写着

You have a new message: subject

You have received a new message:


Body

Visit http://example.com/ and go to your inbox for more info

有谁知道如何自定义这个模板?
如果可能,我想在这个模板表单中使用 i18n。

谢谢!!
.

最佳答案

您需要为发送给用户的邮件生成 View rails g mailboxer:views这将在 <your rails app>/app 中生成两个不同的文件夹

1- notification_mailer - containing template files when a notification is sent to a user
2- message_mailer - containing template files when a message is sent to a user
您可以更改这些模板。

您可以做的另一件事是在 /config/initializer/mailboxer.rb 中取消注释/添加这些行。

config.notification_mailer = CustomNotificationMailer
config.message_mailer = CustomMessageMailer

并创建以上两个邮件程序类,它们必须包含以下功能
send_email

这个函数的参数及其实现在这个链接上给出。您将获得有关如何编写自己的 send_mail 函数的提示。

Notification Mailer Send Email function

Message Mailer Send Email function

关于ruby-on-rails - 如何自定义 Mailboxer 电子邮件的模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11199613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com