-
Notifications
You must be signed in to change notification settings - Fork 2
SendGrid Email API
rizcompeer edited this page Jun 18, 2015
·
2 revisions
PHP URL : https://sendgrid.com/docs/Integrate/Code_Examples/php.html
$user, 'api_key' => $pass, 'to' => 'rizwan@iembsys.com', 'subject' => 'testing from curl', 'html' => 'testing body', 'text' => 'testing body', 'from' => 'example@sendgrid.com', ); print_r($params); $request = $url.'api/mail.send.json'; // Generate curl request $session = curl_init($request); // Tell curl to use HTTP POST curl_setopt ($session, CURLOPT_POST, true); // Tell curl that this is the body of the POST curl_setopt ($session, CURLOPT_POSTFIELDS, $params); // Tell curl not to return headers, but do return the response curl_setopt($session, CURLOPT_HEADER, false); // Tell PHP not to use SSLv3 (instead opting for TLS) curl_setopt($session, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); curl_setopt($session, CURLOPT_RETURNTRANSFER, true); // obtain response $response = curl_exec($session); print("RES=".$response); curl_close($session); // print everything out print_r($response); ?>An Email Sent Including a File Attachment
$user, 'api_key' => $pass, 'to' => 'example@sendgrid.com', 'subject' => 'test of file sends', 'html' => 'the HTML
', 'text' => 'the plain text', 'from' => 'example@sendgrid.com', 'files['.$fileName.']' => '@'.$filePath.'/'.$fileName ); print_r($params); $request = $url.'api/mail.send.json'; // Generate curl request $session = curl_init($request); // Tell curl to use HTTP POST curl_setopt ($session, CURLOPT_POST, true); // Tell curl that this is the body of the POST curl_setopt ($session, CURLOPT_POSTFIELDS, $params); // Tell curl not to return headers, but do return the response curl_setopt($session, CURLOPT_HEADER, false); // Tell PHP not to use SSLv3 (instead opting for TLS) curl_setopt($session, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); curl_setopt($session, CURLOPT_RETURNTRANSFER, true); // obtain response $response = curl_exec($session); curl_close($session); // print everything out print_r($response); ?>SEND GRID -JAVA API https://github.com/sendgrid/sendgrid-java