我有一个简单的邮件
class ApplyMailer < ActionMailer::Base
def inform_teacher
end
def inform_division
end
def inform_everyone
inform_teacher.deliver
inform_division.deliver
end
end
致电inform_teacher
和inform_division
一切正常。但是,当我尝试拨打inform_everyone
时,只有一封空白电子邮件到达。
是否可以通过一种方法组合多种电子邮件方式?
答案 0 :(得分:0)
找到解决方案:
class ApplyMailer < ActionMailer::Base
def inform_teacher
end
def inform_division
end
def self.inform_everyone
ApplyMailer.inform_teacher.deliver
ApplyMailer.inform_division.deliver
end
end