Skip to content

Instantly share code, notes, and snippets.

View xnite's full-sized avatar
🎮
I'm doing Minecraft development now. I'm hoping to push out plugin updates soon!

Robert Whitney xnite

🎮
I'm doing Minecraft development now. I'm hoping to push out plugin updates soon!
View GitHub Profile
@xnite
xnite / function.php
Last active December 4, 2017 22:11 — forked from swapnilshrikhande/function.php
Send mail with mailgun api by PHP CURL.
<?php
define('MAILGUN_URL', 'https://api.mailgun.net/v3/DOMAIN_NAME');
define('MAILGUN_KEY', 'KEY');
function sendmailbymailgun($to,$toname,$mailfromname,$mailfrom,$subject,$html,$text,$tag,$replyto){
$array_data = array(
'from'=> $mailfromname .'<'.$mailfrom.'>',
'to'=>$toname.'<'.$to.'>',
'subject'=>$subject,
'html'=>$html,