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 @@ -
+ Name:
E-mail:
Subject:
@@ -10,6 +10,16 @@

File2:

+
+
+ Name:
+ E-mail:
+ Subject:
+ Message: +

File1:

+

File2:

+ +
\ No newline at end of file diff --git a/src/DataObjects/File.php b/src/DataObjects/File.php index b7529ec..893e321 100644 --- a/src/DataObjects/File.php +++ b/src/DataObjects/File.php @@ -87,6 +87,16 @@ public function getExtension() return pathinfo($this->name, PATHINFO_EXTENSION); } + /** + * Represent image in base64 encode format + * + * @return string + */ + public function getBase64() + { + return base64_encode(file_get_contents($this->uploadPath)); + } + /** * Magic method for template converting * diff --git a/src/Mailer/MailerFactory.php b/src/Mailer/MailerFactory.php index 505033a..15aa141 100644 --- a/src/Mailer/MailerFactory.php +++ b/src/Mailer/MailerFactory.php @@ -12,18 +12,22 @@ class MailerFactory { /** - * Creating Mailer + * Create mailer depends on the type config * - * @param string $type Type mailer + * @param string $type Type of Mailer * @param array $config Mailer config * - * @return PHPMailer + * @return MandrillMailer|PHPMailer */ - public static function create(string $type, array $config) { + public static function create(string $type, array $config) + { switch ($type) { case MailHandler::USE_PHPMAILER: $mailer = new PHPMailer($config); break; + case MailHandler::USE_MANDRILL: + $mailer = new MandrillMailer($config); + break; default: new \Exception("MailerFactory: unable to find mailer for type \"{$type}\""); } diff --git a/src/Mailer/MandrillMailer.php b/src/Mailer/MandrillMailer.php new file mode 100644 index 0000000..1de8052 --- /dev/null +++ b/src/Mailer/MandrillMailer.php @@ -0,0 +1,120 @@ +apiKey); + + $mandrillMessage = array( + 'html' => $message->getBody(), + 'subject' => $message->getSubject(), + 'from_email' => $message->getFrom()->getEmail(), + 'from_name' => $message->getFrom()->getName(), + ); + + // Recipients. + $recipients = [ + 'to' => $message->getTo(), + 'cc' => $message->getCc(), + 'bcc' => $message->getBcc() + ]; + + $to = []; + foreach ($recipients as $type => $emails) { + if (empty($emails)) continue; + foreach ($emails as $email) { + $to[] = [ + 'email' => $email->getEmail(), + 'name' => $email->getName(), + 'type' => $type + ]; + } + } + + $mandrillMessage['to'] = $to; + + // Attachments. + if (0 < $message->getAttachmentsSize() && $message->getAttachmentsSize() < $this->attachmentsSizeLimit + && $attachments = $message->getAttachments() + ) { + $attachmentsArray = []; + foreach ($attachments as $attachment) { + $attachmentsArray[] = [ + 'type' => $attachment->type, + 'name' => $attachment->name, + 'content' => $attachment->getBase64() + ]; + } + + $mandrillMessage['attachments'] = $attachmentsArray; + } + + $result = $mandrill->messages->send($mandrillMessage); + + return $result; + } catch (Mandrill_Error $e) { + $this->errors[] = 'A mandrill error occurred: ' . get_class($e) . ' - ' . $e->getMessage(); + return false; + } + } + + /** + * Getting list of errors + * + * @return array + */ + public function getErrors() + { + return $this->errors; + } +}