Skip to content

Instantly share code, notes, and snippets.

@pounard
Created April 29, 2015 12:06
Show Gist options
  • Save pounard/308336cf6d6583af6ceb to your computer and use it in GitHub Desktop.
Save pounard/308336cf6d6583af6ceb to your computer and use it in GitHub Desktop.
$conf['mail_system'] = ['default-system' => 'NetSmtp_MailSystemProxy'];
$conf['netsmtp_proxy'] = ['default' => 'MimeMailSystem'];
$conf['netsmtp_catch'] = [
'[email protected]',
'[email protected]',
// ...
];
$conf['netsmtp_debug_trace'] = true;
$conf['netsmtp_debug_mime'] = true;
$conf['netsmtp'] = [
'default' => [
'hostname' => 'smtp.example.com',
'port' => 465,
'use_ssl' => true,
'username' => 'someone',
'password' => 'secret',
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment