How to transform a HTTP POST to an email? -


i use mail service can send http post requests url information failed messages. email failed messages.

are there websites (urls) can accept http post requests , translate them emails? or other reasonable easy implement solutions convert mail service's http posts email notifications?

[this own personal 1-user use; don't need solution scales or able process vast numbers of http post requests or of sort.]

an easy way use php read post with

$_post["yourpostedstuffhere"];

and send data via mail

mail(to,subject,message,headers,parameters);

see http://www.w3schools.com/php/php_forms.asp , http://www.w3schools.com/php/func_mail_mail.asp

it's not beautiful, personal use work.


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -