不确定这是一种可能性。
我的场景涉及用户提交票证并发送两封电子邮件。
一封电子邮件正在发送给提交者(确认),另一封发送给管理员(已创建工单的警报)。
对于发送给管理员的电子邮件,我想在抄送字段中包含提交者电子邮件,以便他们可以回复所有信息并更新任何信息的提交者。由于已经有一封电子邮件发送给提交者,我当然不希望管理员电子邮件抄送给提交者。
有谁知道 Rails 是否可以在消息的标题中添加 CC 字段而不实际向他们发送电子邮件?
newticket.mailer.rb
如果有帮助,这是我的:
class NewticketMailer < ActionMailer::Base
default from: "TicketTracker@example.org"
def email_subjectConf
"Facilities Ticket Confirmation - Thank you!"
end
def email_subjectCreation
"Facilities Ticket created for your location!"
end
def ticket_confirmation(ticket)
@ticket = ticket
mail to: @ticket.submitter.full_email, subject: email_subjectConf
end
def ticket_creation(ticket)
@ticket = ticket
mail to: @ticket.mailing_list.name, subject: email_subjectCreation
end
end