silverstripers / custom-emails
Send fully configurable custom emails from Silverstripe
Installs: 297
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:silverstripe-vendormodule
Requires
- php: >=7.4|>=8
- silverstripe/framework: 4.* | 5.*
- silverstripers/grid-field-switch: *
This package is auto-updated.
Last update: 2024-10-17 08:40:46 UTC
README
Installation
Use composer to install the module.
composer require silverstripers/custom-emails
Configuration
Define your emails first in YAML files and run a dev build. The emails objects will be created in the CMS (Siteconfig). You can have multiple emails defined with different identifiers.
Once you go in the CMS and configure them you can start sending emails.
---
name: notifications-config
---
SilverStripers\CustomEmails\Dev\Injector:
definitions:
EMAIL_IDENTIFIER:
name: 'Title of the email'
dynamic: true # for emails which doesnt need a to address
template: '' # Silverstripe template file to use when rendering emails.
arguments: # merge tags
- Name
- Email
###Sending emails
To send an email you can use the Processor classs.
use SilverStripers\CustomEmails\Model\NotificationEmail;
$processor = NotificationEmail::get_processor(
'EMAIL_IDENTIFIER',
'to@email.com',
'from@email.com',
[
'Name' => 'Name',
'Email' => 'test@test.com'
]
);
$processor->setAttachments([
'file_name' => $content
]);
$processor->send();
The functions above can be used as this.
use SilverStripers\CustomEmails\Model\NotificationEmail;
NotificationEmail::get_processor('EMAIL_IDENTIFIER')
->setTo('to@email.com')
->setFrom('from@email.com')
->setData([]) // data as you specify on your merge tags
->setAttachments([
'file_name' => $content
])->send();