├── .gitignore ├── Classes └── Mailer.php ├── Drivers ├── log.php └── phpmailer.php ├── Panel ├── Controllers │ ├── ExtendedBaseController.php │ └── MailerController.php ├── ExtendedClasses │ └── View.php ├── Forms │ └── mailerForm.php ├── Helpers │ └── helpers.php ├── Models │ └── MailerModel.php ├── Router │ ├── filters.php │ ├── router.php │ └── routes.php ├── Views │ └── index.php └── Widgets │ └── mailerWidget │ └── mailerWidget.php ├── composer.json ├── composer.lock ├── mailer.php ├── package.json ├── readme.md └── vendor ├── anahkiasen └── underscore-php │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── composer.json │ ├── config │ └── config.php │ ├── helpers.php │ ├── phpunit.xml │ ├── src │ ├── Dispatch.php │ ├── Method.php │ ├── Methods │ │ ├── ArraysMethods.php │ │ ├── CollectionMethods.php │ │ ├── FunctionsMethods.php │ │ ├── NumberMethods.php │ │ ├── ObjectMethods.php │ │ └── StringsMethods.php │ ├── Parse.php │ ├── Traits │ │ └── Repository.php │ ├── Types │ │ ├── Arrays.php │ │ ├── Functions.php │ │ ├── Number.php │ │ ├── Object.php │ │ └── Strings.php │ └── Underscore.php │ └── tests │ ├── DispatchTest.php │ ├── Dummies │ ├── DummyClass.php │ └── DummyDefault.php │ ├── MethodTest.php │ ├── ParseTest.php │ ├── Types │ ├── ArraysTest.php │ ├── FunctionsTest.php │ ├── NumberTest.php │ ├── ObjectTest.php │ └── StringTest.php │ ├── UnderscoreTest.php │ └── UnderscoreTestCase.php ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── doctrine └── inflector │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ └── Doctrine │ │ └── Common │ │ └── Inflector │ │ └── Inflector.php │ ├── phpunit.xml.dist │ └── tests │ └── Doctrine │ └── Tests │ ├── Common │ └── Inflector │ │ └── InflectorTest.php │ ├── DoctrineTestCase.php │ └── TestInit.php ├── patchwork └── utf8 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE-APACHE │ ├── LICENSE-GPL │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ ├── phpunit.xml.dist │ └── src │ ├── Normalizer.php │ └── Patchwork │ ├── PHP │ └── Shim │ │ ├── Iconv.php │ │ ├── Intl.php │ │ ├── Mbstring.php │ │ ├── Normalizer.php │ │ ├── Xml.php │ │ ├── charset │ │ ├── from.big5.ser │ │ ├── from.cp037.ser │ │ ├── from.cp1006.ser │ │ ├── from.cp1026.ser │ │ ├── from.cp424.ser │ │ ├── from.cp437.ser │ │ ├── from.cp500.ser │ │ ├── from.cp737.ser │ │ ├── from.cp775.ser │ │ ├── from.cp850.ser │ │ ├── from.cp852.ser │ │ ├── from.cp855.ser │ │ ├── from.cp856.ser │ │ ├── from.cp857.ser │ │ ├── from.cp860.ser │ │ ├── from.cp861.ser │ │ ├── from.cp862.ser │ │ ├── from.cp863.ser │ │ ├── from.cp864.ser │ │ ├── from.cp865.ser │ │ ├── from.cp866.ser │ │ ├── from.cp869.ser │ │ ├── from.cp874.ser │ │ ├── from.cp875.ser │ │ ├── from.cp932.ser │ │ ├── from.cp936.ser │ │ ├── from.cp949.ser │ │ ├── from.cp950.ser │ │ ├── from.gsm0338.ser │ │ ├── from.iso-8859-1.ser │ │ ├── from.iso-8859-10.ser │ │ ├── from.iso-8859-11.ser │ │ ├── from.iso-8859-13.ser │ │ ├── from.iso-8859-14.ser │ │ ├── from.iso-8859-15.ser │ │ ├── from.iso-8859-16.ser │ │ ├── from.iso-8859-2.ser │ │ ├── from.iso-8859-3.ser │ │ ├── from.iso-8859-4.ser │ │ ├── from.iso-8859-5.ser │ │ ├── from.iso-8859-6.ser │ │ ├── from.iso-8859-7.ser │ │ ├── from.iso-8859-8.ser │ │ ├── from.iso-8859-9.ser │ │ ├── from.koi8-r.ser │ │ ├── from.koi8-u.ser │ │ ├── from.mazovia.ser │ │ ├── from.nextstep.ser │ │ ├── from.stdenc.ser │ │ ├── from.symbol.ser │ │ ├── from.turkish.ser │ │ ├── from.us-ascii-quotes.ser │ │ ├── from.us-ascii.ser │ │ ├── from.windows-1250.ser │ │ ├── from.windows-1251.ser │ │ ├── from.windows-1252.ser │ │ ├── from.windows-1253.ser │ │ ├── from.windows-1254.ser │ │ ├── from.windows-1255.ser │ │ ├── from.windows-1256.ser │ │ ├── from.windows-1257.ser │ │ ├── from.windows-1258.ser │ │ ├── from.x-mac-ce.ser │ │ ├── from.x-mac-cyrillic.ser │ │ ├── from.x-mac-greek.ser │ │ ├── from.x-mac-icelandic.ser │ │ ├── from.x-mac-roman.ser │ │ ├── from.zdingbat.ser │ │ ├── to.gsm0338.ser │ │ ├── to.mazovia.ser │ │ ├── to.stdenc.ser │ │ ├── to.symbol.ser │ │ ├── to.zdingbat.ser │ │ └── translit.ser │ │ └── unidata │ │ ├── canonicalComposition.ser │ │ ├── canonicalDecomposition.ser │ │ ├── combiningClass.ser │ │ ├── compatibilityDecomposition.ser │ │ ├── lowerCase.ser │ │ └── upperCase.ser │ ├── TurkishUtf8.php │ ├── Utf8.php │ └── Utf8 │ ├── BestFit.php │ ├── Bootup.php │ ├── Bootup │ ├── iconv.php │ ├── intl.php │ ├── mbstring.php │ └── utf8_encode.php │ ├── WindowsStreamWrapper.php │ └── data │ ├── caseFolding_full.ser │ ├── to.bestfit1250.ser │ ├── to.bestfit1251.ser │ ├── to.bestfit1252.ser │ ├── to.bestfit1253.ser │ ├── to.bestfit1254.ser │ ├── to.bestfit1255.ser │ ├── to.bestfit1256.ser │ ├── to.bestfit1257.ser │ ├── to.bestfit1258.ser │ ├── to.bestfit874.ser │ ├── to.bestfit932.ser │ ├── to.bestfit936.ser │ ├── to.bestfit949.ser │ ├── to.bestfit950.ser │ └── translit_extra.ser └── phpmailer └── phpmailer ├── LICENSE ├── PHPMailerAutoload.php ├── VERSION ├── class.phpmailer.php ├── class.phpmaileroauth.php ├── class.phpmaileroauthgoogle.php ├── class.pop3.php ├── class.smtp.php ├── composer.json ├── composer.lock ├── examples ├── DKIM.phps ├── code_generator.phps ├── contactform.phps ├── contents.html ├── contentsutf8.html ├── exceptions.phps ├── gmail.phps ├── gmail_xoauth.phps ├── images │ ├── phpmailer.png │ └── phpmailer_mini.png ├── index.html ├── mail.phps ├── mailing_list.phps ├── pop_before_smtp.phps ├── scripts │ ├── XRegExp.js │ ├── shAutoloader.js │ ├── shBrushPhp.js │ ├── shCore.js │ └── shLegacy.js ├── send_file_upload.phps ├── send_multiple_file_upload.phps ├── sendmail.phps ├── signed-mail.phps ├── smtp.phps ├── smtp_check.phps ├── smtp_no_auth.phps ├── ssl_options.phps └── styles │ ├── shCore.css │ ├── shCoreDefault.css │ ├── shCoreDjango.css │ ├── shCoreEclipse.css │ ├── shCoreEmacs.css │ ├── shCoreFadeToGrey.css │ ├── shCoreMDUltra.css │ ├── shCoreMidnight.css │ ├── shCoreRDark.css │ ├── shThemeAppleScript.css │ ├── shThemeDefault.css │ ├── shThemeDjango.css │ ├── shThemeEclipse.css │ ├── shThemeEmacs.css │ ├── shThemeFadeToGrey.css │ ├── shThemeMDUltra.css │ ├── shThemeMidnight.css │ ├── shThemeRDark.css │ ├── shThemeVisualStudio.css │ └── wrapping.png ├── extras ├── EasyPeasyICS.php ├── README.md ├── htmlfilter.php └── ntlm_sasl_client.php ├── get_oauth_token.php └── language ├── phpmailer.lang-am.php ├── phpmailer.lang-ar.php ├── phpmailer.lang-az.php ├── phpmailer.lang-be.php ├── phpmailer.lang-bg.php ├── phpmailer.lang-ca.php ├── phpmailer.lang-ch.php ├── phpmailer.lang-cs.php ├── phpmailer.lang-da.php ├── phpmailer.lang-de.php ├── phpmailer.lang-el.php ├── phpmailer.lang-eo.php ├── phpmailer.lang-es.php ├── phpmailer.lang-et.php ├── phpmailer.lang-fa.php ├── phpmailer.lang-fi.php ├── phpmailer.lang-fo.php ├── phpmailer.lang-fr.php ├── phpmailer.lang-gl.php ├── phpmailer.lang-he.php ├── phpmailer.lang-hr.php ├── phpmailer.lang-hu.php ├── phpmailer.lang-id.php ├── phpmailer.lang-it.php ├── phpmailer.lang-ja.php ├── phpmailer.lang-ka.php ├── phpmailer.lang-ko.php ├── phpmailer.lang-lt.php ├── phpmailer.lang-lv.php ├── phpmailer.lang-ms.php ├── phpmailer.lang-nb.php ├── phpmailer.lang-nl.php ├── phpmailer.lang-pl.php ├── phpmailer.lang-pt.php ├── phpmailer.lang-pt_br.php ├── phpmailer.lang-ro.php ├── phpmailer.lang-ru.php ├── phpmailer.lang-sk.php ├── phpmailer.lang-sl.php ├── phpmailer.lang-sr.php ├── phpmailer.lang-sv.php ├── phpmailer.lang-tr.php ├── phpmailer.lang-uk.php ├── phpmailer.lang-vi.php ├── phpmailer.lang-zh.php └── phpmailer.lang-zh_cn.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Classes/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Classes/Mailer.php -------------------------------------------------------------------------------- /Drivers/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Drivers/log.php -------------------------------------------------------------------------------- /Drivers/phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Drivers/phpmailer.php -------------------------------------------------------------------------------- /Panel/Controllers/ExtendedBaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Controllers/ExtendedBaseController.php -------------------------------------------------------------------------------- /Panel/Controllers/MailerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Controllers/MailerController.php -------------------------------------------------------------------------------- /Panel/ExtendedClasses/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/ExtendedClasses/View.php -------------------------------------------------------------------------------- /Panel/Forms/mailerForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Forms/mailerForm.php -------------------------------------------------------------------------------- /Panel/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Helpers/helpers.php -------------------------------------------------------------------------------- /Panel/Models/MailerModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Models/MailerModel.php -------------------------------------------------------------------------------- /Panel/Router/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Router/filters.php -------------------------------------------------------------------------------- /Panel/Router/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Router/router.php -------------------------------------------------------------------------------- /Panel/Router/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Router/routes.php -------------------------------------------------------------------------------- /Panel/Views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Views/index.php -------------------------------------------------------------------------------- /Panel/Widgets/mailerWidget/mailerWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/Panel/Widgets/mailerWidget/mailerWidget.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/composer.lock -------------------------------------------------------------------------------- /mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/mailer.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/readme.md -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/.gitignore -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/.php_cs -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/.travis.yml -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/README.md -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/composer.json -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/config/config.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/helpers.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/phpunit.xml -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Dispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Dispatch.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Method.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/ArraysMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/ArraysMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/CollectionMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/CollectionMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/FunctionsMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/FunctionsMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/NumberMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/NumberMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/ObjectMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/ObjectMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Methods/StringsMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Methods/StringsMethods.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Parse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Parse.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Traits/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Traits/Repository.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Types/Arrays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Types/Arrays.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Types/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Types/Functions.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Types/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Types/Number.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Types/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Types/Object.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Types/Strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Types/Strings.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/src/Underscore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/src/Underscore.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/DispatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/DispatchTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Dummies/DummyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Dummies/DummyClass.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Dummies/DummyDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Dummies/DummyDefault.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/MethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/MethodTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/ParseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/ParseTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Types/ArraysTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Types/ArraysTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Types/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Types/FunctionsTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Types/NumberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Types/NumberTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Types/ObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Types/ObjectTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/Types/StringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/Types/StringTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/UnderscoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/UnderscoreTest.php -------------------------------------------------------------------------------- /vendor/anahkiasen/underscore-php/tests/UnderscoreTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/anahkiasen/underscore-php/tests/UnderscoreTestCase.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/inflector/tests/Doctrine/Tests/Common/Inflector/InflectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/tests/Doctrine/Tests/Common/Inflector/InflectorTest.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/tests/Doctrine/Tests/DoctrineTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/tests/Doctrine/Tests/DoctrineTestCase.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/tests/Doctrine/Tests/TestInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/doctrine/inflector/tests/Doctrine/Tests/TestInit.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor 3 | -------------------------------------------------------------------------------- /vendor/patchwork/utf8/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/.travis.yml -------------------------------------------------------------------------------- /vendor/patchwork/utf8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/patchwork/utf8/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/patchwork/utf8/LICENSE-GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/LICENSE-GPL -------------------------------------------------------------------------------- /vendor/patchwork/utf8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/README.md -------------------------------------------------------------------------------- /vendor/patchwork/utf8/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/appveyor.yml -------------------------------------------------------------------------------- /vendor/patchwork/utf8/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/composer.json -------------------------------------------------------------------------------- /vendor/patchwork/utf8/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Normalizer.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Iconv.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Intl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Intl.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Mbstring.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Normalizer.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/Xml.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.big5.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.big5.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp037.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp037.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1006.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1006.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1026.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp1026.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp424.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp424.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp437.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp437.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp500.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp500.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp737.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp737.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp775.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp775.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp850.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp850.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp852.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp852.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp855.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp855.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp856.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp856.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp857.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp857.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp860.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp860.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp861.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp861.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp862.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp862.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp863.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp863.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp864.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp864.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp865.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp865.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp866.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp866.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp869.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp869.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp874.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp874.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp875.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp875.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp932.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp932.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp936.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp936.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp949.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp949.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp950.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.cp950.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.gsm0338.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.gsm0338.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-1.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-1.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-10.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-10.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-11.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-11.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-13.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-13.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-14.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-14.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-15.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-15.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-16.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-16.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-2.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-2.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-3.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-3.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-4.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-4.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-5.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-5.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-6.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-6.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-7.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-7.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-8.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-8.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-9.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.iso-8859-9.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-r.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-r.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-u.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.koi8-u.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.mazovia.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.mazovia.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.nextstep.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.nextstep.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.stdenc.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.stdenc.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.symbol.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.symbol.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.turkish.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.turkish.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii-quotes.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii-quotes.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.us-ascii.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1250.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1250.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1251.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1251.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1252.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1252.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1253.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1253.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1254.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1254.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1255.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1255.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1256.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1256.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1257.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1257.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1258.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.windows-1258.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-ce.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-ce.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-cyrillic.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-cyrillic.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-greek.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-greek.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-icelandic.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-icelandic.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-roman.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.x-mac-roman.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.zdingbat.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/from.zdingbat.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.gsm0338.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.gsm0338.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.mazovia.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.mazovia.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.stdenc.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.stdenc.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.symbol.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.symbol.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.zdingbat.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/to.zdingbat.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/translit.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/charset/translit.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalComposition.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalComposition.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalDecomposition.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/canonicalDecomposition.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/combiningClass.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/combiningClass.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/compatibilityDecomposition.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/compatibilityDecomposition.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/lowerCase.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/lowerCase.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/upperCase.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/PHP/Shim/unidata/upperCase.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/TurkishUtf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/TurkishUtf8.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/BestFit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/BestFit.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/iconv.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/intl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/intl.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/mbstring.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/utf8_encode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/Bootup/utf8_encode.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/WindowsStreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/WindowsStreamWrapper.php -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/caseFolding_full.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/caseFolding_full.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1250.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1250.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1251.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1251.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1252.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1252.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1253.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1253.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1254.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1254.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1255.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1255.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1256.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1256.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1257.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1257.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1258.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit1258.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit874.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit874.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit932.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit932.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit936.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit936.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit949.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit949.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit950.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/to.bestfit950.ser -------------------------------------------------------------------------------- /vendor/patchwork/utf8/src/Patchwork/Utf8/data/translit_extra.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/patchwork/utf8/src/Patchwork/Utf8/data/translit_extra.ser -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.23 2 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/class.phpmailer.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmaileroauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/class.phpmaileroauth.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmaileroauthgoogle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/class.phpmaileroauthgoogle.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/class.pop3.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/class.smtp.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/composer.lock -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/DKIM.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/DKIM.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/code_generator.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/code_generator.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contactform.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/contactform.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/contents.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contentsutf8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/contentsutf8.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/exceptions.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/exceptions.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/gmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/gmail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/gmail_xoauth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/gmail_xoauth.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/images/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/images/phpmailer.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/index.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/mail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/mailing_list.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/mailing_list.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/pop_before_smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/pop_before_smtp.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/XRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/scripts/XRegExp.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shAutoloader.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shBrushPhp.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shCore.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shLegacy.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/send_file_upload.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/send_file_upload.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/send_multiple_file_upload.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/send_multiple_file_upload.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/sendmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/sendmail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/signed-mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/signed-mail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/smtp.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp_check.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/smtp_check.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp_no_auth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/smtp_no_auth.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/ssl_options.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/ssl_options.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCore.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreDefault.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreDjango.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreEclipse.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreEmacs.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreMDUltra.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreMidnight.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreRDark.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeAppleScript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeAppleScript.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeDefault.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeDjango.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeEclipse.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeEmacs.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeMDUltra.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeMidnight.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeRDark.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeVisualStudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeVisualStudio.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/examples/styles/wrapping.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/extras/README.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/get_oauth_token.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCD344/kirby-mailer-wrapper/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php --------------------------------------------------------------------------------