PHP code example of koldy / phpmailer
1. Go to this page and download the library: Download koldy/phpmailer 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/ */
koldy / phpmailer example snippets
t
'phpmailer' => [
'enabled' => true,
'adapter_class' => \KoldyPHPMailer\PHPMailer::class,
'options' => [
'host' => 'your.domain.com',
'port' => 587,
'username' => 'your.username',
'password' => 'your.password',
'type' => 'smtp',
'adjust' => function ($phpmailer) { // optional
// you can adjust the PHPMailer's instance here, for example:
$phpmailer->SMTPDebug = \PHPMailer\PHPMailer\SMTP::DEBUG_SERVER;
}
]
]