├── README.md ├── assets ├── css │ ├── bootstrap.min.css │ ├── style-v2.css │ ├── style-v3.css │ ├── style-v4.css │ ├── style-v5.css │ ├── style-v6.css │ ├── style-v7.css │ ├── style-v8.css │ └── style.css ├── font-awesome │ ├── css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── img │ └── launcher-loader.gif ├── js │ ├── app.js │ ├── bootstrap.min.js │ ├── jquery-2.1.1.js │ ├── jquery.validate.min.js │ └── less.min.js └── less │ ├── style-v2.less │ ├── style-v3.less │ ├── style-v4.less │ ├── style-v5.less │ ├── style-v6.less │ └── style.less ├── config.php ├── database.php ├── database └── information.sql ├── document.txt ├── index-dev.php ├── index.php ├── sendmail.php ├── uploads ├── .gitignore ├── .htaccess └── index.html └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json └── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/style-v2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v2.css -------------------------------------------------------------------------------- /assets/css/style-v3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v3.css -------------------------------------------------------------------------------- /assets/css/style-v4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v4.css -------------------------------------------------------------------------------- /assets/css/style-v5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v5.css -------------------------------------------------------------------------------- /assets/css/style-v6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v6.css -------------------------------------------------------------------------------- /assets/css/style-v7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v7.css -------------------------------------------------------------------------------- /assets/css/style-v8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style-v8.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/img/launcher-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/img/launcher-loader.gif -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/js/jquery-2.1.1.js -------------------------------------------------------------------------------- /assets/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/js/jquery.validate.min.js -------------------------------------------------------------------------------- /assets/js/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/js/less.min.js -------------------------------------------------------------------------------- /assets/less/style-v2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style-v2.less -------------------------------------------------------------------------------- /assets/less/style-v3.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style-v3.less -------------------------------------------------------------------------------- /assets/less/style-v4.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style-v4.less -------------------------------------------------------------------------------- /assets/less/style-v5.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style-v5.less -------------------------------------------------------------------------------- /assets/less/style-v6.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style-v6.less -------------------------------------------------------------------------------- /assets/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/assets/less/style.less -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/config.php -------------------------------------------------------------------------------- /database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/database.php -------------------------------------------------------------------------------- /database/information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/database/information.sql -------------------------------------------------------------------------------- /document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/document.txt -------------------------------------------------------------------------------- /index-dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/index-dev.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/index.php -------------------------------------------------------------------------------- /sendmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/sendmail.php -------------------------------------------------------------------------------- /uploads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/uploads/.gitignore -------------------------------------------------------------------------------- /uploads/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/uploads/.htaccess -------------------------------------------------------------------------------- /uploads/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.22 2 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/class.phpmailer.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmaileroauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/class.phpmaileroauth.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.phpmaileroauthgoogle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/class.phpmaileroauthgoogle.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/class.pop3.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/class.smtp.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/composer.lock -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/DKIM.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/DKIM.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/code_generator.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/code_generator.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contactform.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/contactform.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/contents.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/contentsutf8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/contentsutf8.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/exceptions.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/exceptions.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/gmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/gmail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/gmail_xoauth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/gmail_xoauth.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/images/phpmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/images/phpmailer.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/index.html -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/mail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/mailing_list.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/mailing_list.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/pop_before_smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/pop_before_smtp.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/XRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/scripts/XRegExp.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shAutoloader.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shBrushPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shBrushPhp.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shCore.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/scripts/shLegacy.js -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/send_file_upload.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/send_file_upload.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/send_multiple_file_upload.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/send_multiple_file_upload.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/sendmail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/sendmail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/signed-mail.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/signed-mail.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/smtp.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp_check.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/smtp_check.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/smtp_no_auth.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/smtp_no_auth.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/ssl_options.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/ssl_options.phps -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCore.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreDefault.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreDjango.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreEclipse.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreEmacs.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreFadeToGrey.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreMDUltra.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreMidnight.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shCoreRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shCoreRDark.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeAppleScript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeAppleScript.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeDefault.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeDjango.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeDjango.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeEclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeEclipse.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeEmacs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeEmacs.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeFadeToGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeFadeToGrey.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeMDUltra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeMDUltra.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeMidnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeMidnight.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeRDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeRDark.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/shThemeVisualStudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/shThemeVisualStudio.css -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/examples/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/examples/styles/wrapping.png -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/extras/README.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/get_oauth_token.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huniko519/Ajax-contact-form-and-send-mail-PHP/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php --------------------------------------------------------------------------------