alaa / magento2-custom-mail
Magento2 Custom Mail
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
This package is auto-updated.
Last update: 2025-03-29 00:39:32 UTC
README
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
<?xml version="1.0" encoding="UTF-8"?>
<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
<!--@subject "Contact Us" @-->
<p>Name: {{var name}}</p>
<p>Email: {{var email}}</p>
<p>Comment: {{var comment}}</p>