Download the PHP package brbunny/brmailer without Composer
On this page you can find all versions of the php package brbunny/brmailer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download brbunny/brmailer
More information about brbunny/brmailer
Files in brbunny/brmailer
Package brmailer
Short Description BrMailer is a component for handling email using PHPMAILER
License MIT
Informations about the package brmailer
BRMAILER @BrBunny
BrMailer is a component for handling emails using PHPMAILER.
Installation
BrMailer is available through Composer:
or run
Documentation
For more details on how to use BrMailer, see the example folder with details in the component directory
Configuration
To begin using BrMailer we need to configure the email data. Put constant BRMAILER
in your project's configuration file and change the values according to your preference. To learn more visit Component PHPMailer
Para começar a usar o BrMailer precisamos configurar os dados do e-mail. Coloque constante BRMAILER
no arquivo de configuração do seu projeto e mude os valores de acordo com sua preferência. Para saber mais visite Componente PHPMailer
Bootstrap
To send email to just one recipient, add the destination email as a parameter in the bootstrap()
function. However, you can add it with the addAddress()
function or both together.
Para enviar e-mail para apenas um destinatário, adicione o e-mail de destino como parâmetro da função bootstrap()
. No entanto, você pode adicioná-lo com a função addAddress()
ou os ambos juntos.
Template
Now you can assemble your html email template using BrPlates, create the template using the template()
method. For more details access the sample folder and see how it works or visit BrPlates.
Agora você pode montar seu template de e-mail html usando BrPlates, basta criar o template usando o método template()
. Para mais detalhes acesse a pasta de exemplo e veja como funciona ou visite BrPlates.
AddAddress
If you do not enter email as a parameter in the bootstrap function, you must use the addAddress()
function.
Se você não inserir email como um parâmetro na função bootstrap, você deve usar a função addAddress()
.
AddCC
If you use the addAddress()
or addCC()
function to add more than one recipient, they will know who received the message.
Caso use função addAddress()
ou addCC()
para adicionar mais de um destinatário, os mesmos terão conhecimento de quem recebeu a mensagem.
AddBCC
The addBCC()
function sends the email to more than one person, without one knowing that the other is receiving the same message.
A função addBCC()
envia o e-mail para mais de uma pessoa, sem que uma saiba que a outra está recebendo a mesma mensagem.
Attachment
Send E-mail
Credits
- Kevin S. Siqueira (Developer of this library)
- PHPMailer (Lib to send E-mail)
License
The MIT License (MIT). Please see License File for more information.
All versions of brmailer with dependencies
ext-pdo Version >=7.2
phpmailer/phpmailer Version 6.*
brbunny/brplates Version 1.*