├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config ├── email.php └── index.html ├── helpers ├── MY_email_helper.php └── index.html └── libraries ├── MY_Email.php └── index.html /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/composer.json -------------------------------------------------------------------------------- /config/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/config/email.php -------------------------------------------------------------------------------- /config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/config/index.html -------------------------------------------------------------------------------- /helpers/MY_email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/helpers/MY_email_helper.php -------------------------------------------------------------------------------- /helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/helpers/index.html -------------------------------------------------------------------------------- /libraries/MY_Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/libraries/MY_Email.php -------------------------------------------------------------------------------- /libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivantcholakov/codeigniter-phpmailer/HEAD/libraries/index.html --------------------------------------------------------------------------------