From e20b998c26cbdb4bfcda29ce87beee7829362b9e Mon Sep 17 00:00:00 2001 From: vadim Date: Fri, 16 Mar 2018 16:43:59 +0700 Subject: [PATCH] service update --- src/Services/LogServices.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/LogServices.php b/src/Services/LogServices.php index b5dc583..656ebd2 100644 --- a/src/Services/LogServices.php +++ b/src/Services/LogServices.php @@ -54,7 +54,7 @@ public static function send($code, $data) { if(!isset($data['email'])) continue; $email_data['to'] = $data['email']; - $email_data['subject'] = 'Email log.'; + $email_data['subject'] = config('magnetar.log.email_subject'); $email_data['html'] = '

'.$template.'

'; dispatch(new MailingJob('email', $email_data)); @@ -71,7 +71,7 @@ public static function send($code, $data) { default: if(substr_count($item, '@') > 0) { $email_data['to'] = $item; - $email_data['subject'] = 'Email log.'; + $email_data['subject'] = config('magnetar.log.email_subject'); $email_data['html'] = '

'.$template.'

'; dispatch(new MailingJob('email', $email_data));