Notification email

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
bloody56
Posts: 1
Joined: 14 Dec 2020, 11:21

Notification email

Post by bloody56 »

Hello

I have a problem I tried to configure email notifications with the code below but nothing happens :

Code: Select all

	
	$g_enable_email_notification = ON;
	$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
	$g_smtp_host = 'smtp.office365.com';
	$g_smtp_connection_mode = 'tls';
	$g_smtp_port = '587';
	$g_smtp_username = 'mnoreply@mydomain.com';
	$g_smtp_password = "xxxxxxxx";
	$g_return_path_email   = 'mantis.noreply@mydomain.com'; #alias mnoreply@mydomain.com
	$g_administrator_email='mantis.noreply@mydomain.com'; #alias mnoreply@mydomain.com
	$g_webmaster_email=$g_administrator_email;
	$g_from_email='mantis.noreply@mydomain.com'; #alias mnoreply@mydomaine.com
Tanks for your help
cas
Posts: 1586
Joined: 11 Mar 2006, 16:08
Contact:

Re: Notification email

Post by cas »

Post Reply