├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENCE.txt ├── README.md ├── class.simple_mail.php ├── composer.json ├── example ├── example.php ├── example_attachment.php ├── example_attachment_textfile.php ├── lolcat_what.jpg ├── pbXBsZSwgY2hh.jpg └── test.txt ├── phpunit.xml └── tests └── class.simple_mail.test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/README.md -------------------------------------------------------------------------------- /class.simple_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/class.simple_mail.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/composer.json -------------------------------------------------------------------------------- /example/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/example/example.php -------------------------------------------------------------------------------- /example/example_attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/example/example_attachment.php -------------------------------------------------------------------------------- /example/example_attachment_textfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/example/example_attachment_textfile.php -------------------------------------------------------------------------------- /example/lolcat_what.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/example/lolcat_what.jpg -------------------------------------------------------------------------------- /example/pbXBsZSwgY2hh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/example/pbXBsZSwgY2hh.jpg -------------------------------------------------------------------------------- /example/test.txt: -------------------------------------------------------------------------------- 1 | Testing attachments -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/class.simple_mail.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoghanobrien/php-simple-mail/HEAD/tests/class.simple_mail.test.php --------------------------------------------------------------------------------