I have a GAE PHP app which is able to send email and also able to receive
email however the POST fields are empty.
I know that I have set the APP.YAML file up correctly because my MAIL
HANDLING script is getting invoked when I receive an email.
However, the POST fields are empty. So I am not able to process the
incoming email in any way.
In particular, in the code below, the ELSE block is getting executed. Any
ideas?
if ($_POST) {
$email = $_POST['sender'];
$content = $_POST['original'];
$subject = $_POST['subject'];}else {
syslog(LOG_ERR, "[handle_incoming_email.php] EMPTY POST fields... Bailing.");
return;}
Thanks.
Liz
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.