yurineves / notification
This is a libray that uses composer as the basic for generating email notifications
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:libray
Requires
- phpmailer/phpmailer: ^6.2
This package is auto-updated.
Last update: 2025-06-24 09:14:40 UTC
README
This library has the function of sending e-mail using the phpmailer library. Doing this in an uncomplicated way is essential for any system.
To install the library, run the following command:
composer require yurineves92/notification
To make use of the library, simply require the autoload of the composer, invoke the class and make the method call:
<? php require __DIR__ . '/vendor/autoload.php'; USE Notification\Email; $mail = new Email (2, "mail.host.com", "your@email.com", "your-pass", "smtp secure (tls / ssl)", "port (587)", "from@email.com", "From Name"); $email-> sendEmail ("Subject", "Content", "reply@email.com", "Replay Name", "address@email.com", "Address Name");
Note that the entire configuration of sending the email is using the magic method builder! Once you've invoked the constructor method within your application, your system will be able to fire the shots.