Download the PHP package yii2tech/activemail without Composer
On this page you can find all versions of the php package yii2tech/activemail. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package activemail
ActiveMail Extension for Yii 2
This extension provides 'active mail message' concept implementation for Yii2. Active message is a model, which knows all necessary data for self composition and can send itself.
For license information check the LICENSE-file.
Requirements
This extension requires any implementation of the Yii2 mailer, such as yiisoft/yii2-swiftmailer.
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require section of your composer.json.
Note: you should install particular mailer extension such as 'yiisoft/yii2-swiftmailer' separately.
Usage
This extension provides 'active mail message' concept implementation for Yii2. ActiveMessage is a model, which knows all necessary data for self composition and can send itself. It allows email message composition based on templates stored inside PHP files or database.
In order to use this extension you need to add mail template storage component to your application:
ActiveMessage
Each particular active message should extend [[\yii2tech\activemail\ActiveMessage]] class, implementing at least all abstract methods, which guarantees particular active message has default values for each necessary part. As a regular model it can contain attributes, which are defined via public fields. Validation rules can be setup for those attributes. For example:
Once declared active message can be used as regular model inside controller:
[[\yii2tech\activemail\ActiveMessage]] uses regular Yii2 mail composition mechanism based on view files.
By default it uses internal view provided by this extension. However in order to work properly it obviously
requires layout view to exist.
Each particular active message may specify its own view via viewName()
method declaration.
The most basic content for such view would be following:
Working with placeholders
Each part of active message such as subject or body may contain placeholders in format: {placeholderName}
.
While message composition these placeholders will be replaced by thier actual values. The actual placeholders
are defined via templatePlaceholders()
method. By default it it uses current active message attribute values,
but you may override it in order to add extra placeholders:
[[\yii2tech\activemail\ActiveMessage]] also declares templatePlaceholderHints()
method, which can be used
to specify hints for each used placeholder. You may use it, while composing edit form for the mail template.
Template usage
The main benefit of [[\yii2tech\activemail\ActiveMessage]] usage is mail template feature.
Each active message can have a named template, which overrides its default values for subject, body etc.
The template name is defined via templateName()
method. By default the active message class base name is used.
Actual template source is defined via 'mail template storage' component, which has been already mentioned above.
Following template storages are available:
- [[\yii2tech\activemail\TemplateStoragePhp]] - stores templates inside PHP files
- [[\yii2tech\activemail\TemplateStorageDb]] - stores templates inside relational database
- [[\yii2tech\activemail\TemplateStorageMongoDb]] - stores templates inside MongoDB
- [[\yii2tech\activemail\TemplateStorageActiveRecord]] - finds templates using ActiveRecord
Please refer to the particular storage class for more details.
For example: assume we use [[\yii2tech\activemail\TemplateStoragePhp]] as template storage. In order to define
a template for our app\mail\active\ContactUs
active message, we should create a file under '@app/mail/templates'
named 'ContactUs.php' with following content:
After this is done, values from this file for 'subject' and 'htmlBody' will override default ones
declared by app\mail\active\ContactUs
.
This feature may prove itself very useful, while creating multi-lingual sites. In this case you can declare
templateName()
method for active message as following:
Then you may create multiple templates named 'ContactUs' under sub-directories, which names matching particular language code like 'en-US', 'de' and so on.
Using database template storages allows application administrator override mail messages content if necessary, by inserting corresponding row into a table and restore default value by deleting it.
Note: templates are meant to override default active message values, thus if particular template is missing in the storage, the program will NOT trigger any error or throw any exception.
Template management
The most common reason of using special mail template system is allowing application administrator to edit them via web interface. In order to simplify such feature creation, this extension provides [[\yii2tech\activemail\TemplateModelFinder]] class, which allows listing all available active messages and created templates. The search model for the active messages can look like following:
The web controller for email templates can look like following: