diff --git a/composer.json b/composer.json index 3ab7540..d3e66c0 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,8 @@ "name": "justcoded/form-handler", "require": { "vlucas/valitron": "^1.4", - "phpmailer/phpmailer": "^6.0" + "phpmailer/phpmailer": "^6.0", + "mandrill/mandrill": "1.0.*" }, "autoload": { "files": [ diff --git a/composer.lock b/composer.lock index 4d292ed..edbb4c6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,52 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "95095432f505566fa2ecc6a3203bdfec", + "hash": "eae1fb8aeb29dc48dba4416012a08519", + "content-hash": "3516f398758a12def1b135e6d168dbc0", "packages": [ + { + "name": "mandrill/mandrill", + "version": "1.0.55", + "source": { + "type": "git", + "url": "https://bitbucket.org/mailchimp/mandrill-api-php.git", + "reference": "da3adc10042eafac2e53de141b358a52b8e53596" + }, + "dist": { + "type": "zip", + "url": "https://bitbucket.org/mailchimp/mandrill-api-php/get/da3adc10042eafac2e53de141b358a52b8e53596.zip", + "reference": "da3adc10042eafac2e53de141b358a52b8e53596", + "shasum": "" + }, + "require": { + "php": ">=5.2.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "Mandrill": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Mandrill Devs", + "email": "community@mandrill.com", + "homepage": "http://mandrill.com", + "role": "Developer" + } + ], + "description": "API client library for the Mandrill email as a service platform", + "homepage": "https://bitbucket.org/mailchimp/mandrill-api-php", + "keywords": [ + "api", + "email" + ], + "time": "2015-09-22 13:58:03" + }, { "name": "phpmailer/phpmailer", "version": "v6.0.3", @@ -70,7 +114,7 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", - "time": "2018-01-05T13:19:58+00:00" + "time": "2018-01-05 13:19:58" }, { "name": "vlucas/valitron", @@ -116,7 +160,7 @@ "validation", "validator" ], - "time": "2017-10-30T23:15:06+00:00" + "time": "2017-10-30 23:15:06" } ], "packages-dev": [], diff --git a/examples/form.php b/examples/form2email-basic.php similarity index 98% rename from examples/form.php rename to examples/form2email-basic.php index e9ad038..ed930d9 100644 --- a/examples/form.php +++ b/examples/form2email-basic.php @@ -40,6 +40,7 @@ ] // according to Valitron doc. ]; +// PhpMailer config. $mailerConfig = [ 'mailer' => MailHandler::USE_PHPMAILER, // (or USE_POSTMARKAPP, USE_MANDRILL) 'host' => 'smtp.gmail.com', diff --git a/examples/form2email-mandrill.php b/examples/form2email-mandrill.php new file mode 100644 index 0000000..aeab521 --- /dev/null +++ b/examples/form2email-mandrill.php @@ -0,0 +1,76 @@ + debug mode. +ini_set('display_errors', 1); +error_reporting(E_ALL); + +// init autoload. +require __DIR__ . '/../vendor/autoload.php'; + +use JustCoded\FormHandler\FileManager\FileManager; +use JustCoded\FormHandler\FormHandler; +use JustCoded\FormHandler\Handlers\MailHandler; +use JustCoded\FormHandler\DataObjects\MailMessage; + +$validation = [ + 'fields' => [ + 'name' => ['required'], + 'email' => ['required', 'email'], + 'subject' => ['required'], + 'message' => [ + 'required', + ['lengthMin', 5] + ], + 'cv_file' => [ + [ + 'required', + 'message' => 'Please upload {field}', + ], + [ + 'file', + ['jpeg', 'jpg', 'png'], // types. + 2000000, // size limit 2 MB. + 'message' => '{field} should be up to 2MB and allows only file types jpeg, png.', + ], + ], + ], // according to Valitron doc for mapFieldsRules. + 'labels' => [ + 'name' => 'Name', + 'email' => 'Email address' + ] // according to Valitron doc. +]; + +// Mandrill config. +$mailerConfig = [ + 'mailer' => MailHandler::USE_MANDRILL, // (or USE_POSTMARKAPP, USE_MANDRILL) + 'apiKey' => '_5mPSvb39BQqnA7G_dOaAA', + 'attachmentsSizeLimit' => 8000000, // around 8MB. +]; + +$fileManager = new FileManager([ + 'uploadPath' => __DIR__ . '/attachments', + 'uploadUrl' => 'http://MY-DOMAIN.COM/attachments', +]); + +$message = [ + 'from' => ['hello@justcoded.co.uk' => 'FROM NAME'], + 'to' => ['kostant21@yahoo.com' => 'TO NAME'], +// 'cc' => ['email' => 'name'], +// 'bcc' => ['email' => 'name'], + 'subject' => 'Contact request from {name}', + 'bodyTemplate' => __DIR__ . '/template-html.php', + 'altBodyTemplate' => __DIR__ . '/template-plain.php', + 'attachments' => $fileManager->upload([ + 'cv_file', 'image_file' + ]) +]; + + +$mailer = new MailHandler($mailerConfig, new MailMessage($message)); +$formHandler = new FormHandler($validation, $mailer); + +if ($formHandler->validate($_POST)) { + $formHandler->process(); +} + +echo json_encode($formHandler->response()); diff --git a/examples/index.php b/examples/index.php index 42ea8a7..606b533 100644 --- a/examples/index.php +++ b/examples/index.php @@ -1,7 +1,7 @@
- +