From 0b9485277616a226d246e5a0a881d20cefe067b1 Mon Sep 17 00:00:00 2001 From: Alex Karajos Date: Wed, 11 Dec 2024 13:02:51 +0200 Subject: [PATCH] Issue #369: Delete `config/autoload/mail.global.php.dist` Signed-off-by: Alex Karajos --- config/autoload/mail.global.php.dist | 80 ---------------------------- 1 file changed, 80 deletions(-) delete mode 100644 config/autoload/mail.global.php.dist diff --git a/config/autoload/mail.global.php.dist b/config/autoload/mail.global.php.dist deleted file mode 100644 index 9ef3b30..0000000 --- a/config/autoload/mail.global.php.dist +++ /dev/null @@ -1,80 +0,0 @@ - [ - //the key is the mail service name, this is the default one, which does not extend any configuration - 'default' => [ - //message configuration - 'message_options' => [ - //from email address of the email - 'from' => '', - //from name to be displayed instead of from address - 'from_name' => '', - //reply-to email address of the email - 'reply_to' => '', - //replyTo name to be displayed instead of the address - 'reply_to_name' => '', - //destination email address as string or a list of email addresses - 'to' => [], - //copy destination addresses - 'cc' => [], - //hidden copy destination addresses - 'bcc' => [], - //email subject - 'subject' => '', - //body options - content can be plain text, HTML - 'body' => [ - 'content' => '', - 'charset' => 'utf-8', - ], - //attachments config - 'attachments' => [ - 'files' => [], - 'dir' => [ - 'iterate' => false, - 'path' => 'data/mail/attachments', - 'recursive' => false, - ], - ], - ], - /** - * 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 - * - esmtp => Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport - * - * defaults to sendmail - **/ - 'transport' => 'sendmail', - //options that will be used only if esmtp adapter is used - 'smtp_options' => [ - //hostname or IP address of the mail server - 'host' => '', - //port of the mail server - 587 or 465 for secure connections - 'port' => 587, - 'connection_config' => [ - //the smtp authentication identity - 'username' => '', - //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 - 'tls' => null, - ], - ], - ], - // option to log the SENT emails - 'log' => [ - 'sent' => getcwd() . '/log/mail/sent.log', - ], - ], -];