PHP code example of brenno-duarte / phpmailer-class
1. Go to this page and download the library: Download brenno-duarte/phpmailer-class library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Adiciona informações de remetente e destinatário
$mailer->add('[email protected]', 'SENDER NAME', '[email protected]', 'RECIPIENT NAME');
// Envia um arquivo por email (OPCIONAL)
$mailer->attach('imagem.png', 'imagem_name');
// Envia uma imagem no HTML (OPCIONAL)
$mailer->embeddedImage('imagem.png', 'imagem', 'imagem');
// Envia o e-mail
$mailer->send('Teste de e-mail', '<h1>Teste de e-mail</h1><p>cid:imagem</p>');
// Caso haja algum erro
if ($mailer->error()) {
echo $mailer->error();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.