Created
July 25, 2021 12:02
-
-
Save AaEzha/7945edd7095db03f08c9a2d7174376b8 to your computer and use it in GitHub Desktop.
CodeIgniter 3 + MailHog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| defined('BASEPATH') OR exit('No direct script access allowed'); | |
| $config = [ | |
| 'protocol' => 'smtp', | |
| 'smtp_host' => 'localhost', | |
| 'smtp_port' => 1025, | |
| 'crlf' => "\r\n", | |
| 'newline' => "\r\n" | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment