hellem/notification

This is a library that uses composer as the basis for generating email notifications

v1.0.1 2019-10-26 23:55 UTC

This package is not auto-updated.

Last update: 2024-06-17 12:03:26 UTC


README

Email Notification Library using phpMailer

This library has the function to send email using phpmailer library. Doing this uncomplicated action is essential for any system.

To install the library, run the following command:

composer require gustavoweb/composer_test

To make use of the library, simply require composer autoload, invoke the class, and call the method:

<? php

require __DIR__. '/lib_ext/autoload.php';

USE Notification\Email;

$email = 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 all email sending setup is using the magic builder method! Once you invoke the builder method within your application, your system will be able to perform the triggers.

Developers

License

MIT

** Another UpInside Training course, make good use! **