Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions config/autoload/mail.local.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ return [
**/

'transport' => Laminas\Mail\Transport\Sendmail::class,

// Uncomment the below line if you want to save a copy of all sent emails to a certain IMAP folder
// Valid only if the Transport is SMTP
// 'save_sent_message_folder' => ['INBOX.Sent'],

//message configuration
'message_options' => [
Expand Down Expand Up @@ -81,8 +85,8 @@ return [
//hostname or IP address of the mail server
'host' => '',

//port of the mail server - default 25
'port' => 465,
//port of the mail server - 587 or 465 for secure connections
'port' => 587,

//connection class used for authentication
//the value can be one of smtp, plain, login or crammd5
Expand Down