↧
Answer by Patrick Allaert for How to send an email, using google gmail api in...
Looks like you are sending JSON encoded data while you should respect message/rfc822 format. You should probably not base64-encode + json-encode your message:<?php$message = "To:...
View ArticleHow to send an email, using google gmail api in php with cURL?
I have a problem sending mail using the Google Api in Php and cURL,I tried this one:// ENVOIE EMAIL$message="To: test@example.com\r\nFrom: test@example.com\r\nSubject: GMail test.\r\n My...
View Article