@@ -40,12 +40,12 @@ |
||
40 | 40 | */ |
41 | 41 | public static function get(array $setting): MessengerInterface |
42 | 42 | { |
43 | - $sender = $setting['config']['sender'] ?? ''; |
|
43 | + $sender = $setting['config']['sender'] ?? ''; |
|
44 | 44 | $recipients = $setting['config']['recipients'] ?? []; |
45 | - $host = $setting['config']['host'] ?? ''; |
|
46 | - $user = $setting['config']['user'] ?? ''; |
|
47 | - $pass = $setting['config']['pass'] ?? ''; |
|
48 | - $port = $setting['config']['port'] ?? ''; |
|
45 | + $host = $setting['config']['host'] ?? ''; |
|
46 | + $user = $setting['config']['user'] ?? ''; |
|
47 | + $pass = $setting['config']['pass'] ?? ''; |
|
48 | + $port = $setting['config']['port'] ?? ''; |
|
49 | 49 | |
50 | 50 | $instance = new Smtp($user, $pass, $host, (int) $port); |
51 | 51 | $instance->setSubject(__('core', 'messenger_text_mail_subject')); |
@@ -40,8 +40,8 @@ |
||
40 | 40 | */ |
41 | 41 | public static function get(array $setting): MessengerInterface |
42 | 42 | { |
43 | - $apiKey = $setting['config']['api_key'] ?? ''; |
|
44 | - $sender = $setting['config']['sender'] ?? ''; |
|
43 | + $apiKey = $setting['config']['api_key'] ?? ''; |
|
44 | + $sender = $setting['config']['sender'] ?? ''; |
|
45 | 45 | $recipients = $setting['config']['recipients'] ?? []; |
46 | 46 | |
47 | 47 | $instance = new Sendgrid($apiKey); |