9951 explained code solutions for 126 technologies


phpmailerHow do I set up PHPMailer to use a specific port?


To set up PHPMailer to use a specific port, the following steps should be taken:

  1. Include the PHPMailer library in your project.
require 'PHPMailer/PHPMailerAutoload.php';
  1. Create a new instance of the PHPMailer class.
$mail = new PHPMailer;
  1. Set the port that you wish to use.
$mail->Port = 465;
  1. Set the encryption type to use for the port.
$mail->SMTPSecure = 'ssl';
  1. Connect to the SMTP server using the provided port and encryption type.
$mail->Host = 'smtp.example.com';
$mail->Port = 465;
$mail->SMTPSecure = 'ssl';
$mail->SMTPAuth = true;
  1. Send the mail using the send() method.
$mail->send();
  1. Check for errors.
if (!$mail->send()) {
    echo 'Mailer Error: ' . $mail->ErrorInfo;
}

Helpful links

Edit this code on GitHub