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/ */

    

brenno-duarte / phpmailer-class example snippets


define('PHPMAILER', [
    'HOST' => 'mail.YOUR_HOST.com.br',
    'USER' => 'contact@YOUR_HOST.com.br',
    'PASS' => 'YOUR_PASSWORD',
    'PORT' => '587',
    'SECURITY' => 'tls',
    'DEBUG' => '0'
]);


// 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();
}