Skip to content

Instantly share code, notes, and snippets.

@the94air
Forked from permatis/app.php
Created February 18, 2018 12:51
Show Gist options
  • Save the94air/a1b730fb26629953d6c63f6126a4e3f0 to your computer and use it in GitHub Desktop.
Save the94air/a1b730fb26629953d6c63f6126a4e3f0 to your computer and use it in GitHub Desktop.
Create setting SwiftMailer in Slim Framework.
$app->mailer = function () {
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', '465', 'ssl')
->setUsername('example@gmail.com')
->setPassword('password');
$mailer = Swift_Mailer::newInstance($transport);
return $mailer;
};
$mailer = $app->mailer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment