alexandresys/notification

Email Notification Library using phpMailer

v1.0.1 2019-08-28 23:00 UTC

This package is not auto-updated.

Last update: 2024-05-03 02:16:05 UTC


README

Email using a phpmailer library. Doing a decompilation action is essential for any system.

To do a library installation, run the following command:

composer require alexandresys/notification

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

<? php

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

USE Notification \ Email;

$ email = new Email (2, "mail.host.com", "your@email.com", "your pass", "secure smtp (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 setup is being used the magic builder method! Once you invoke the builder within your application, your system will be able to perform the triggers.

Developers

  • [Gustavo Web] - Developing a library and teacher of the Composer in Practice course!
  • [Emerson Alexandre] - CEO and Founder Valesistem Ti
  • [Valesistem tecnologia] - Official website of your
  • phpMailer - Lib to email

License

MIT

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