From 7967109c3d887461d3a582fbf7a33fd296603496 Mon Sep 17 00:00:00 2001 From: sergiu Date: Fri, 6 Dec 2024 12:21:53 +0200 Subject: [PATCH] config corrections Signed-off-by: sergiu --- config/mail.global.php.dist | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/config/mail.global.php.dist b/config/mail.global.php.dist index 10308ca..9ef3b30 100644 --- a/config/mail.global.php.dist +++ b/config/mail.global.php.dist @@ -3,14 +3,13 @@ declare(strict_types=1); return [ - /** * Dotkernel mail module configuration * Note that many of these options can be set programmatically too, when sending mail messages actually that is - * what you'll usually do, these config provide just default and options that remain the same for all mails + * what you'll usually do, these configs provide just defaults and options that remain the same for all mails */ 'dot_mail' => [ - //the key is the mail service name, this is the default one, which does not extends any configuration + //the key is the mail service name, this is the default one, which does not extend any configuration 'default' => [ //message configuration 'message_options' => [ @@ -46,17 +45,17 @@ return [ ], ], /** - * the mail transport to use - * can be any class implementing Symfony\Component\Mailer\Transport\TransportInterface + * the mail transport to use can be any class implementing + * Symfony\Component\Mailer\Transport\TransportInterface * - * for standard mail transports, you can use these aliases - * - sendmail => Symfony\Component\Mailer\Transport\SendmailTransport + * for standard mail transports, you can use these aliases: + * - sendmail => Symfony\Component\Mailer\Transport\SendmailTransport * - esmtp => Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport * * defaults to sendmail **/ 'transport' => 'sendmail', - //options that will be used only if esmtp adapter is used + //options that will be used only if esmtp adapter is used 'smtp_options' => [ //hostname or IP address of the mail server 'host' => '', @@ -68,7 +67,7 @@ return [ //the smtp authentication credential 'password' => '', //to disable auto_tls set tls key to false - //it's not recommended to disable TLS while connecting to an SMTP server over the Internet + //it's not recommended to disable TLS while connecting to an SMTP server 'tls' => null, ], ],