├── .bowerrc ├── .gitignore ├── README.md ├── bower.json ├── demo ├── css │ └── demo.css ├── favicon.ico ├── index.html ├── js │ ├── demo.js │ └── jquery.sendmail.js ├── mail │ ├── error.html │ ├── phpmailer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── get_oauth_token.php │ │ ├── language │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.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-hi.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-rs.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.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 │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── OAuth.php │ │ │ ├── PHPMailer.php │ │ │ ├── POP3.php │ │ │ └── SMTP.php │ ├── sendmail.php │ └── success.html └── scss │ └── demo.scss ├── dist ├── jquery.sendmail.js ├── jquery.sendmail.min.js └── mail │ ├── error.html │ ├── phpmailer │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── get_oauth_token.php │ ├── language │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-ba.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-hi.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-rs.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.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 │ └── src │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php │ ├── sendmail.php │ └── success.html ├── docs ├── css │ ├── fallbacks.css │ ├── fonts.css │ ├── main.css │ └── media.css ├── favicon.ico ├── fonts │ ├── PlayBold │ │ ├── PlayBold.eot │ │ ├── PlayBold.svg │ │ ├── PlayBold.ttf │ │ ├── PlayBold.woff │ │ └── PlayBold.woff2 │ └── PlayRegular │ │ ├── PlayRegular.eot │ │ ├── PlayRegular.svg │ │ ├── PlayRegular.ttf │ │ ├── PlayRegular.woff │ │ └── PlayRegular.woff2 ├── index.html ├── js │ ├── common.js │ ├── jquery.sendmail.js │ └── jquery.sendmail.min.js ├── libs │ ├── animate.css │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── animate-config.json │ │ ├── animate.css │ │ ├── animate.min.css │ │ ├── bower.json │ │ ├── gulpfile.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── source │ │ │ ├── _base.css │ │ │ ├── attention_seekers │ │ │ ├── bounce.css │ │ │ ├── flash.css │ │ │ ├── headShake.css │ │ │ ├── heartBeat.css │ │ │ ├── jello.css │ │ │ ├── pulse.css │ │ │ ├── rubberBand.css │ │ │ ├── shake.css │ │ │ ├── swing.css │ │ │ ├── tada.css │ │ │ └── wobble.css │ │ │ ├── bouncing_entrances │ │ │ ├── bounceIn.css │ │ │ ├── bounceInDown.css │ │ │ ├── bounceInLeft.css │ │ │ ├── bounceInRight.css │ │ │ └── bounceInUp.css │ │ │ ├── bouncing_exits │ │ │ ├── bounceOut.css │ │ │ ├── bounceOutDown.css │ │ │ ├── bounceOutLeft.css │ │ │ ├── bounceOutRight.css │ │ │ └── bounceOutUp.css │ │ │ ├── fading_entrances │ │ │ ├── fadeIn.css │ │ │ ├── fadeInDown.css │ │ │ ├── fadeInDownBig.css │ │ │ ├── fadeInLeft.css │ │ │ ├── fadeInLeftBig.css │ │ │ ├── fadeInRight.css │ │ │ ├── fadeInRightBig.css │ │ │ ├── fadeInUp.css │ │ │ └── fadeInUpBig.css │ │ │ ├── fading_exits │ │ │ ├── fadeOut.css │ │ │ ├── fadeOutDown.css │ │ │ ├── fadeOutDownBig.css │ │ │ ├── fadeOutLeft.css │ │ │ ├── fadeOutLeftBig.css │ │ │ ├── fadeOutRight.css │ │ │ ├── fadeOutRightBig.css │ │ │ ├── fadeOutUp.css │ │ │ └── fadeOutUpBig.css │ │ │ ├── flippers │ │ │ ├── flip.css │ │ │ ├── flipInX.css │ │ │ ├── flipInY.css │ │ │ ├── flipOutX.css │ │ │ └── flipOutY.css │ │ │ ├── lightspeed │ │ │ ├── lightSpeedIn.css │ │ │ └── lightSpeedOut.css │ │ │ ├── rotating_entrances │ │ │ ├── rotateIn.css │ │ │ ├── rotateInDownLeft.css │ │ │ ├── rotateInDownRight.css │ │ │ ├── rotateInUpLeft.css │ │ │ └── rotateInUpRight.css │ │ │ ├── rotating_exits │ │ │ ├── rotateOut.css │ │ │ ├── rotateOutDownLeft.css │ │ │ ├── rotateOutDownRight.css │ │ │ ├── rotateOutUpLeft.css │ │ │ └── rotateOutUpRight.css │ │ │ ├── sliding_entrances │ │ │ ├── slideInDown.css │ │ │ ├── slideInLeft.css │ │ │ ├── slideInRight.css │ │ │ └── slideInUp.css │ │ │ ├── sliding_exits │ │ │ ├── slideOutDown.css │ │ │ ├── slideOutLeft.css │ │ │ ├── slideOutRight.css │ │ │ └── slideOutUp.css │ │ │ ├── specials │ │ │ ├── hinge.css │ │ │ ├── jackInTheBox.css │ │ │ ├── rollIn.css │ │ │ └── rollOut.css │ │ │ ├── zooming_entrances │ │ │ ├── zoomIn.css │ │ │ ├── zoomInDown.css │ │ │ ├── zoomInLeft.css │ │ │ ├── zoomInRight.css │ │ │ └── zoomInUp.css │ │ │ └── zooming_exits │ │ │ ├── zoomOut.css │ │ │ ├── zoomOutDown.css │ │ │ ├── zoomOutLeft.css │ │ │ ├── zoomOutRight.css │ │ │ └── zoomOutUp.css │ ├── easings │ │ └── easings.js │ ├── fancybox │ │ ├── .bower.json │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── feature_request.md │ │ │ │ └── question.md │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.fancybox.css │ │ │ ├── jquery.fancybox.js │ │ │ ├── jquery.fancybox.min.css │ │ │ └── jquery.fancybox.min.js │ │ ├── docs │ │ │ └── index.html │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── src │ │ │ ├── css │ │ │ ├── core.css │ │ │ ├── fullscreen.css │ │ │ ├── share.css │ │ │ ├── slideshow.css │ │ │ └── thumbs.css │ │ │ └── js │ │ │ ├── core.js │ │ │ ├── fullscreen.js │ │ │ ├── guestures.js │ │ │ ├── hash.js │ │ │ ├── media.js │ │ │ ├── share.js │ │ │ ├── slideshow.js │ │ │ ├── thumbs.js │ │ │ └── wheel.js │ ├── flextabs-js │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── ajax-content.php │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ ├── jquery.flextabs.css │ │ │ │ ├── jquery.flextabs.theme-default.css │ │ │ │ └── jquery.flextabs.theme-template.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.flextabs — копия.js │ │ │ │ └── jquery.flextabs.js │ │ │ └── scss │ │ │ │ ├── demo.scss │ │ │ │ ├── jquery.flextabs.scss │ │ │ │ ├── jquery.flextabs.theme-default.scss │ │ │ │ └── jquery.flextabs.theme-template.scss │ │ ├── dist │ │ │ ├── jquery.flextabs.css │ │ │ ├── jquery.flextabs.js │ │ │ ├── jquery.flextabs.min.css │ │ │ ├── jquery.flextabs.min.js │ │ │ ├── jquery.flextabs.theme-default.css │ │ │ └── jquery.flextabs.theme-default.min.css │ │ ├── gulpfile.js │ │ └── package.json │ ├── jquery.easing │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── js │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── camelCase.js │ │ │ ├── init.js │ │ │ ├── nodeName.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ ├── toType.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rboxStyle.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── isFunction.js │ │ │ ├── isWindow.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── materialize │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── materialize.css │ │ │ │ └── materialize.min.css │ │ │ └── js │ │ │ │ ├── materialize.js │ │ │ │ └── materialize.min.js │ │ ├── docs │ │ │ └── js │ │ │ │ ├── init.js │ │ │ │ ├── jquery.timeago.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ ├── prism.js │ │ │ │ └── search.js │ │ ├── extras │ │ │ └── noUiSlider │ │ │ │ ├── nouislider.css │ │ │ │ ├── nouislider.js │ │ │ │ └── nouislider.min.js │ │ ├── js │ │ │ ├── anime.min.js │ │ │ ├── autocomplete.js │ │ │ ├── buttons.js │ │ │ ├── cards.js │ │ │ ├── carousel.js │ │ │ ├── cash.js │ │ │ ├── characterCounter.js │ │ │ ├── chips.js │ │ │ ├── collapsible.js │ │ │ ├── component.js │ │ │ ├── datepicker.js │ │ │ ├── dropdown.js │ │ │ ├── forms.js │ │ │ ├── global.js │ │ │ ├── materialbox.js │ │ │ ├── modal.js │ │ │ ├── parallax.js │ │ │ ├── pushpin.js │ │ │ ├── range.js │ │ │ ├── scrollspy.js │ │ │ ├── select.js │ │ │ ├── sidenav.js │ │ │ ├── slider.js │ │ │ ├── tabs.js │ │ │ ├── tapTarget.js │ │ │ ├── timepicker.js │ │ │ ├── toasts.js │ │ │ ├── tooltip.js │ │ │ └── waves.js │ │ ├── package-lock.json │ │ ├── package.js │ │ ├── sass │ │ │ ├── .npmignore │ │ │ ├── _style.scss │ │ │ ├── components │ │ │ │ ├── _badges.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _chips.scss │ │ │ │ ├── _collapsible.scss │ │ │ │ ├── _color-classes.scss │ │ │ │ ├── _color-variables.scss │ │ │ │ ├── _datepicker.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _global.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _icons-material-design.scss │ │ │ │ ├── _materialbox.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _preloader.scss │ │ │ │ ├── _pulse.scss │ │ │ │ ├── _sidenav.scss │ │ │ │ ├── _slider.scss │ │ │ │ ├── _table_of_contents.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _tapTarget.scss │ │ │ │ ├── _timepicker.scss │ │ │ │ ├── _toast.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _waves.scss │ │ │ │ └── forms │ │ │ │ │ ├── _checkboxes.scss │ │ │ │ │ ├── _file-input.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _input-fields.scss │ │ │ │ │ ├── _radio-buttons.scss │ │ │ │ │ ├── _range.scss │ │ │ │ │ ├── _select.scss │ │ │ │ │ └── _switches.scss │ │ │ ├── materialize.css │ │ │ └── materialize.scss │ │ ├── templates │ │ │ ├── masonry-template │ │ │ │ ├── LICENSE │ │ │ │ ├── background1.jpg │ │ │ │ ├── background2.jpg │ │ │ │ ├── background3.jpg │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ │ ├── init.js │ │ │ │ │ └── masonry.pkgd.min.js │ │ │ ├── parallax-template │ │ │ │ ├── LICENSE │ │ │ │ ├── background1.jpg │ │ │ │ ├── background2.jpg │ │ │ │ ├── background3.jpg │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ │ └── init.js │ │ │ └── starter-template │ │ │ │ ├── LICENSE │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── js │ │ │ │ └── init.js │ │ ├── tests │ │ │ └── spec │ │ │ │ ├── autocomplete │ │ │ │ └── autocompleteSpec.js │ │ │ │ ├── cards │ │ │ │ └── cardsSpec.js │ │ │ │ ├── carousel │ │ │ │ └── carouselSpec.js │ │ │ │ ├── chips │ │ │ │ └── chipsSpec.js │ │ │ │ ├── collapsible │ │ │ │ └── collapsibleSpec.js │ │ │ │ ├── dropdown │ │ │ │ └── dropdownSpec.js │ │ │ │ ├── fab │ │ │ │ └── fabSpec.js │ │ │ │ ├── helper.js │ │ │ │ ├── materialbox │ │ │ │ └── materialboxSpec.js │ │ │ │ ├── modal │ │ │ │ └── modalSpec.js │ │ │ │ ├── select │ │ │ │ └── selectSpec.js │ │ │ │ ├── sidenav │ │ │ │ └── sidenavSpec.js │ │ │ │ ├── tabs │ │ │ │ └── tabsSpec.js │ │ │ │ ├── toast │ │ │ │ └── toastSpec.js │ │ │ │ └── tooltip │ │ │ │ └── tooltipSpec.js │ │ ├── v1-changelog.md │ │ └── v1-upgrade-guide.md │ ├── morecontent-js │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ └── jquery.morecontent.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.morecontent.js │ │ │ │ └── jquery.morecontent.lite.js │ │ │ └── scss │ │ │ │ ├── demo.scss │ │ │ │ └── jquery.morecontent.scss │ │ ├── dist │ │ │ ├── jquery.morecontent.js │ │ │ ├── jquery.morecontent.lite.js │ │ │ ├── jquery.morecontent.lite.min.js │ │ │ └── jquery.morecontent.min.js │ │ ├── gulpfile.js │ │ ├── names.json │ │ └── package.json │ ├── prism │ │ ├── prism.css │ │ └── prism.js │ ├── svg4everybody │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .gitignore │ │ ├── .jscsrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── svg4everybody.js │ │ │ ├── svg4everybody.legacy.js │ │ │ ├── svg4everybody.legacy.min.js │ │ │ └── svg4everybody.min.js │ │ ├── lib │ │ │ └── svg4everybody.js │ │ ├── package.json │ │ └── test │ │ │ ├── 1138.png │ │ │ ├── demo.svg │ │ │ ├── demo.svg.1138.png │ │ │ ├── demo.svg.camera.png │ │ │ ├── demo.svg.eye.png │ │ │ ├── demo.svg.pencil.png │ │ │ ├── eye.png │ │ │ └── index.html │ └── uikit │ │ ├── css │ │ ├── uikit-rtl.css │ │ ├── uikit-rtl.min.css │ │ ├── uikit.css │ │ └── uikit.min.css │ │ └── js │ │ ├── uikit-icons.js │ │ ├── uikit-icons.min.js │ │ ├── uikit.js │ │ └── uikit.min.js ├── mail │ ├── error.html │ ├── phpmailer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── get_oauth_token.php │ │ ├── language │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.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-hi.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-rs.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.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 │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── OAuth.php │ │ │ ├── PHPMailer.php │ │ │ ├── POP3.php │ │ │ └── SMTP.php │ ├── sendmail.php │ └── success.html ├── scss │ ├── _base.scss │ ├── _libs_custom.scss │ ├── _mixins.scss │ ├── _patterns.scss │ ├── _vars.scss │ ├── fallbacks.scss │ ├── fonts.scss │ ├── main.scss │ └── media.scss └── svg │ ├── more-content.svg │ └── svg-sprite.svg ├── gulpfile.js ├── package.json └── yarn.lock /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "demo/libs/" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.[oa] 2 | *~ 3 | *.ini 4 | node_modules/ 5 | demo/libs/ 6 | help.txt -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sendmail-js", 3 | "version": "2.0.4", 4 | "description": "Универсальный плагин отправки HTML-форм средствами PHP, jQuery, AJAX", 5 | "main": "index.js", 6 | "authors": [ 7 | "WahaWaher" 8 | ], 9 | "license": "MIT", 10 | "homepage": "https://github.com/WahaWaher/sendmail-js.git", 11 | "ignore": [ 12 | "node_modules", 13 | "demo/libs" 14 | ], 15 | "dependencies": { 16 | "jquery": "^3.3.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /demo/css/demo.css: -------------------------------------------------------------------------------- 1 | /* Demo styles here... */ 2 | .center { 3 | text-align: center; 4 | } 5 | 6 | input, 7 | select, 8 | textarea { 9 | display: block; 10 | width: 100%; 11 | margin: 10px 0; 12 | padding: 5px; 13 | } 14 | 15 | label { 16 | display: block; 17 | vertical-align: middle; 18 | } 19 | 20 | input[type=checkbox], 21 | input[type=radio] { 22 | display: inline; 23 | width: auto; 24 | margin: 0 5px; 25 | position: relative; 26 | top: 2px; 27 | } 28 | 29 | .sendmail { 30 | max-width: 450px; 31 | margin: 0 auto; 32 | } 33 | 34 | .send-mail-container h2 { 35 | margin-top: 60px; 36 | } 37 | 38 | .send-mail-container h3 { 39 | margin-top: 30px; 40 | } 41 | 42 | pre { 43 | background-color: #f5f5f5; 44 | padding: 12px 10px; 45 | } 46 | 47 | code { 48 | display: inline-block; 49 | background-color: #eee; 50 | padding: 3px 7px; 51 | margin: 2px 5px; 52 | } 53 | 54 | form label.error { 55 | color: #fff; 56 | background-color: #ff8686; 57 | padding: 3px 8px; 58 | font-size: 15px; 59 | } 60 | -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WahaWaher/sendmail-js/c6d2f6d8c15c522e60abdede76602754f1151a77/demo/favicon.ico -------------------------------------------------------------------------------- /demo/js/demo.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | // Demo JS here... 3 | }); -------------------------------------------------------------------------------- /demo/mail/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Далеко-далеко за словесными горами в стране, гласных и согласных живут рыбные тексты. Текстов единственное предложения диких свой, вопроса которое. Своих текста имени, свой сбить, диких составитель, вскоре эта дороге одна живет свой?
4 |Далеко-далеко за словесными горами в стране, гласных и согласных живут рыбные тексты. Текстов единственное предложения диких свой, вопроса которое. Своих текста имени, свой сбить, диких составитель, вскоре эта дороге одна живет свой?
5 |Далеко-далеко за словесными горами в стране, гласных и согласных живут рыбные тексты. Текстов единственное предложения диких свой, вопроса которое. Своих текста имени, свой сбить, диких составитель, вскоре эта дороге одна живет свой?
6 |