This site uses cookies from Google to deliver and enhance the quality of its services and to analyse traffic.Learn moreOK, got it

Mail Configuration

The mail configuration uses PHPMailer.

mail_config.php

<?php // PHPMailer // https://github.com/PHPMailer/PHPMailer/wiki use PHPMailer\PHPMailer\PHPMailer; $mail = new PHPMailer; $mail->isSMTP(); $mail->SMTPDebug = 0; $mail->Debugoutput = 'html'; $mail->Host = 'your.smtp.server'; $mail->Port = 25; $mail->SMTPAuth = false; $mail->SMTPAutoTLS = false; $mail->SMTPSecure = false; $mail->setFrom('noreply@your.portal.server', 'Your Portal Server'); // END PHPMailer