├── .gitignore ├── COPYING.txt ├── Log └── Handler.php ├── Mail └── Transport.php ├── Model └── Config.php ├── README.md ├── Source ├── Auth.php └── Secure.php ├── composer.json ├── etc ├── adminhtml │ └── system.xml ├── config.xml ├── di.xml └── module.xml └── registration.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Log/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/Log/Handler.php -------------------------------------------------------------------------------- /Mail/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/Mail/Transport.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/Model/Config.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/README.md -------------------------------------------------------------------------------- /Source/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/Source/Auth.php -------------------------------------------------------------------------------- /Source/Secure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/Source/Secure.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magespecialist/m2-MSP_SMTP/HEAD/registration.php --------------------------------------------------------------------------------