Last active
October 28, 2017 20:39
-
-
Save caviv/6e674a5e6f896edd14f5b7bae192b77c to your computer and use it in GitHub Desktop.
A https://www.email2json.net sample receiving call of webhook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 will be called when an email is sent to webhook created in https://www.email2json.net