parent
67bd9c0caa
commit
ecbc988e6c
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
$url = 'https://stupidmailer.herokuapp.com/';
|
||||
// use key 'http' even if you send the request to https://...
|
||||
$options = array(
|
||||
'http' => array(
|
||||
'header' => "Content-type: application/json\r\n",
|
||||
'method' => 'POST',
|
||||
'content' => '{
|
||||
"from": "'.$_POST['email'].'",
|
||||
"to": "matt.huntington@gmail.com",
|
||||
"subject": "New '.$_SERVER['HTTP_HOST'].' message from '.$_POST['name'].'",
|
||||
"html": "'.$_POST['message'].'"
|
||||
}'
|
||||
)
|
||||
);
|
||||
$context = stream_context_create($options);
|
||||
$result = file_get_contents($url, false, $context);
|
||||
if ($result === FALSE) { echo '{
|
||||
"status":500,
|
||||
"error":"could not make request to stupidmailer"
|
||||
}'; }
|
||||
|
||||
echo $result;
|
||||
Loading…
Reference in new issue