Repository

PHPMailer/PHPMailer

The classic email sending library for PHP
19577 8533 883 1959
  • 000
Please check these things before submitting your issue: Read the error message you're seeing - it often tells you what is wrong, and may contain useful links & instructions Make sure you're using the latest version of PHPMailer Check that your problem is not dealt with in the troubleshooting...
  • 000
<?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; use PHPMailer\PHPMailer\Exception; //Load Composer's autoloader require 'vendor/autoload.php'; $mail = new PHPMailer; //$mail->SMTPDebug = 3; // Enable verbose debug output $mail->isSMTP();...