A https://www.email2json.net sample receiving call of webhook
<?php | |
// receieving webhook sample | |
// example of receiver for email API webhook of https://www.email2json.net | |
// this will be called when an email is sent to webhook created in email2json.net | |
$date = date('Y-m-d H:i:s'); | |
$ip = $_SERVER['REMOTE_ADDR']; | |
$get = json_encode($_GET); | |
$post = file_get_contents('php://input'); | |
$mail = json_decode($post); | |
$post_data = print_r($mail, true); | |
file_put_contents('webh.log', "\r\n$date,$ip,$get\r\n$post_data\r\n\r\n", FILE_APPEND); | |
echo "OK"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
this will be called when an email is sent to webhook created in https://www.email2json.net