I am trying every setting and configurations explained on forums, I get mail sent but nothing reaches
config.php
define("PHPMAILER",1);
define("PHPMAILERHOST",'smtp.gmail.com');
I have set back and forth settings with no use
$message_envelope =
'righterclicker@gmail.com';
# Handling bounces. Check README.bounces for more info
# This can be 'pop' or 'mbox'
$bounce_protocol = 'pop';
# set this to 0, if you set up a cron to download bounces regularly by using the
# commandline option. If this is 0, users cannot run the page from the web
# frontend. Read README.commandline to find out how to set it up on the
# commandline
define ("MANUALLY_PROCESS_BOUNCES",1);
# when the protocol is pop, specify these three
//$bounce_mailbox_port = "pop.gmail.com";
$bounce_mailbox_port = "995/pop3/ssl";
#$bounce_mailbox_port = "pop.gmail.com";
//$bounce_mailbox_host = 'smtp.gmail.com';
$bounce_mailbox_host = 'pop.gmail.com';
$bounce_mailbox_user =
'domain@gmail.com';
$bounce_mailbox_password = 'password';
/*peter*/
$phpmailer_smtpsecure = 'ssl';
$phpmailer_smtpuser='domain@gmail.com';
$phpmailer_smtppassword='password';
$phpmailer_smtpport=465;