Wrong sender address when using PHPMailer to send email

Wrong sender address when using PHPMailer to send email

Hi,

I am trying to use Zoho SMTP to send emails with PHP Mailer. The from address is configured as support@tegimus.com but in all the emails sent, the sender address is being shown as tegimus@gmail.com. Searched through a lot of articles but couldnt find this specific issue. My configuration for PHP Mailer is as follows:

$mailer = new PHPMailer\PHPMailer\PHPMailer;
$mailer->Host = 'smtp.zoho.com';
$mailer->SMTPAuth = true;
$mailer->SMTPSecure = 'ssl';
$mailer->Port = 465;
$mailer->Username = ' support@tegimus.com';
$mailer->Password = *****masked******;
$mailer->isHTML(true);
$mailer->From = ' support@tegimus.com';

Any insights appreciated.