Skip to content

Instantly share code, notes, and snippets.

@AaEzha
Created July 25, 2021 13:15
Show Gist options
  • Select an option

  • Save AaEzha/3f39b3fe040fb362a2bd29f0e64b0c02 to your computer and use it in GitHub Desktop.

Select an option

Save AaEzha/3f39b3fe040fb362a2bd29f0e64b0c02 to your computer and use it in GitHub Desktop.
CodeIgniter 4 + MailHog
<?php
// folder : app/Config
// file : Email.php
namespace Config;
use CodeIgniter\Config\BaseConfig;
class Email extends BaseConfig
{
// other codes
public $protocol = 'smtp';
public $mailPath;
public $SMTPHost = "localhost";
public $SMTPPort = 1025;
public $SMTPCrypto;
// other codes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment