kiavin / mailer
package derived from a mailing module using symphony mailer
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.49
- yiisoft/yii2-symfonymailer: ~2.0.3
Requires (Dev)
- symfony/browser-kit: ^6.0 || >=2.7 <=4.2.4
This package is auto-updated.
Last update: 2025-03-21 17:33:56 UTC
README
This guide outlines the steps to integrate the Mailer module into your project.
Step 1: Remove the Mailing Module
Ensure the removal of the existing mailing module from your project.
Step 2: Installation
You can install the Mailer module via Composer by adding the following line to your project's composer.json
file:
php "require": { "kiavin/mailer": "dev-main" }
Then, run composer update
to install the package.
Step 3: Import Module in Controller
In your controller where you intend to use the mailer functionality, add the following line to import the contactForm
class:
**use kiarie\mailer\contactForm;**
Step 4: Configuration
Ensure that your mailer component in the web.php
configuration file is correctly configured to work with the Mailer module.
Verification
After completing the above steps, your mailer module should be successfully integrated and ready to use.