Search found 2 matches

by nekke
15 Jul 2024, 23:01
Forum: Help
Topic: Send Email with SMTP port 25 no SSL or TLS
Replies: 2
Views: 11128

Re: Send Email with SMTP port 25 no SSL or TLS

Ok i understand...

in file email_api.php the smtp_connection_mode set SMTPAutoTLS to false if the value in
config_defaults_inc.php is blank

email_api.php line 1444

if( is_blank( config_get( 'smtp_connection_mode' ) ) )
{
$t_mail->SMTPAutoTLS = false;
}
else
{
$t_mail->SMTPSecure = config ...
by nekke
15 Jul 2024, 16:12
Forum: Help
Topic: Send Email with SMTP port 25 no SSL or TLS
Replies: 2
Views: 11128

Send Email with SMTP port 25 no SSL or TLS

Hi!
i'm in trouble to looking for why mails are not send by Mantis.

I tried to send email with a simple php file like this:


<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php'; // Adjust based on your installation method

$mail = new ...