From 653fe6c1ea59e69052d1f1f40f2354e8f4ad1c8f Mon Sep 17 00:00:00 2001 From: yanxd Date: Thu, 24 Apr 2014 18:25:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=80=E6=9C=89=E5=8F=91=E9=82=AE=E4=BB=B6?= =?UTF-8?q?=E9=83=BD=E6=96=B0=E5=BC=80=E7=BA=BF=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/mailer.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/models/mailer.rb b/app/models/mailer.rb index aee837ac4..3db787525 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -446,7 +446,9 @@ class Mailer < ActionMailer::Base def self.deliver_mail(mail) return false if mail.to.blank? && mail.cc.blank? && mail.bcc.blank? - super + Thread.new do + super + end end def self.method_missing(method, *args, &block)