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 | |
$title = "Title goes here"' | |
$email_title = "Email subject goes here"; | |
$email_recipent = "[email protected]"; | |
$message = "Put your html email body in <strong>here</strong>"; | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, 'https://api.sparkpost.com/api/v1/transmissions'); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
NewerOlder