PHP code example of rauwebieten / twigmailer

1. Go to this page and download the library: Download rauwebieten/twigmailer 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/ */

    

rauwebieten / twigmailer example snippets


$loader = new \Twig\Loader\FilesystemLoader(__DIR__ . '/templates');  
$twig = new \Twig\Environment($loader);

$phpMailer = new \PHPMailer();
$phpMailer->Mailer = 'mail';
$phpMailer->setFrom('[email protected]', 'Me');

$mailer = new \RauweBieten\TwigMailer\TwigMailer($phpMailer, $twig);

$mailer->create('some-template.html.twig', [
    'some-variable' => 'Some value'
]);

$mailer->getPhpMailer()->addAddress('[email protected]', 'Someone');
$mailer->send();