我需要修改在狂欢应用中发送给客户的电子邮件。
目前,一张非常普通的表格会转到客户电子邮箱。
我无法找到可以修改该电子邮件并添加自定义模板的代码。
之前有过这方面工作的人吗?
答案 0 :(得分:0)
邮件模板位于core/app/mailers/spree
,订单后发出的邮件应为core/app/mailers/spree/order_mailer.rb
。
答案 1 :(得分:0)
在import matplotlib.pyplot as plt
import numpy as np
months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
monthsRange = np.arange(len(months))
temperatures = [5.3, 6.1, 25.5, 27.8, 31.2, 33.0, 33.0, 32.8, 28.4, 21.1, 17.5, 11.9]
plt.bar(monthsRange, temperatures, color='green')
plt.title('Max Temperature for Monthes')
plt.xticks(monthsRange, months)
plt.legend()
plt.show()
中,您需要创建一个名为app/mailers/spree
的文件。在此文件中添加:
order_mailer_decorator.rb
在文件Spree::OrderMailer.class_eval do
def confirm_email(order, resend = false)
your code
end
end
的{{1}}中,您需要编写代码。