2017 © Pedro Peláez
 

magento2-module magento2-custom-mail

Magento2 Custom Mail

image

alaa/magento2-custom-mail

Magento2 Custom Mail

  • Sunday, December 31, 2017
  • by alaa-almaliki
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Magento2 Custom Mail

Example

$data = [
            'comment' => 'Hello this is a test message',
            'email' => 'john.doe@domain.com',
            'name' => 'John Doe',
        ];

        /**
         * wrap parameters values in array as they are called by call_user_func_array
         */
        $config = [
            'template_identifier' => ['contact_us'],
            'template_options' => [['area' => Area::AREA_FRONTEND ,'store' => $this->storeManager->getStore()->getId()]],
            'template_vars' => [$data],
            'from' => [['email' => 'john.doe@domain.com', 'name' => 'John Doe']],
            'to' => ['email' =>'tom.right@example.com', 'name' => 'Tom Right'],
            'cc' => ['email' =>'sarah.foxon@yahoo.com', 'name' => 'Sarah Foxon'],
            'bcc' => ['email' =>'Ahmed.Hassan@example.com', 'name' => 'Ahmed Hassan'],
        ];

        $this->sendMail->setConfig($config);
        $this->sendMail->send();

Template Config

app/code/Namespace/Modulename/etc/email_templates.xml, (*1)


<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:framework:Email/etc/email_templates.xsd">
    <template id="contact_us" label="Contact Us" file="contactus.html" type="html" module="Namespace_Modulename" area="frontend"/>
</config>

Template

app/code/Namespace/Modulename/view/frontend/email/contactus.html, (*2)

<!--@subject "Contact Us" @-->
<p>Name: {{var name}}</p>
<p>Email: {{var email}}</p>
<p>Comment: {{var comment}}</p>

The Versions

31/12 2017

dev-master

9999999-dev

Magento2 Custom Mail

  Sources   Download

MIT

31/12 2017

v1.0.0.x-dev

1.0.0.9999999-dev

Magento2 Custom Mail

  Sources   Download

MIT

31/12 2017

1.0.0

1.0.0.0

Magento2 Custom Mail

  Sources   Download

MIT