I developed a php solution to send a mail with gmail. It worked properly until yesterday but today I haven't been able to send mails with the function implemented.
sendmail.ini configuration:
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=25
smtp_ssl=auto
error_logfile=error.log
[email protected]
auth_password=xxx
pop3_server=
pop3_username=
pop3_password=
[email protected]
force_recipient=
hostname=
This is the part of the PHP code where I send the mail
$mail="[email protected]";
$titulo="title";
$message='Message';
$header="From: Sender <[email protected]>\r\n";
$bool=mail($mail,$titulo,$message,$header);