edneto / notifications
This is a library that uses composer as the basis for generating email notifications
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 2 921
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- phpmailer/phpmailer: 6.0.5
This package is auto-updated.
Last update: 2021-12-15 06:42:08 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 edneto/notifications
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; $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 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.
Developers
- Edson L Lima - Developer of this library and full stack web developer
- phpMailer - Lib to send Email
License
MIT
One more library to streamline your processes, make good use of it!
Biblioteca de Notificação via e-mail utilizando o phpMailer
Essa biblioteca tem por função enviar e-mail utilizando a biblioteca phpmailer. Fazer essa ação de forma descomplicada é essencial para qualquer sistema.
Para fazer a instalação da biblioteca, execute o seguinte comando:
composer require edneto/notifications
Para fazer o uso da biblioteca, basta requerir o autoload do composer, invocar a classe e fazer a chamada do método:
<?php require __DIR__ . '/vendor/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 que toda a configuração do envio do e-mail está utilizando o método mágico construtor! Uma vez invocado o método construtor dentro da sua aplicação, seu sistema estar'á apto a efetuar os disparos.
Developers
- Edson L Lima - Desenvolvedor desta biblioteca e full stack web developer
- phpMailer - Lib to send E-mail
License
MIT
Mais um biblioteca para agilizar seus processos, faça bom uso!