Skip to content

Instantly share code, notes, and snippets.

@lira92
Last active March 23, 2016 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lira92/038ff65cb3698efc0df1 to your computer and use it in GitHub Desktop.
Save lira92/038ff65cb3698efc0df1 to your computer and use it in GitHub Desktop.
<?php
$mgClient = new Mailgun('YOUR_API_KEY');
$domain = "YOUR_DOMAIN_NAME";
$result = $mgClient->sendMessage($domain, array(
'from' => 'Remetente <mailgun@YOUR_DOMAIN_NAME>',
'to' => 'Destinatario <YOU@YOUR_DOMAIN_NAME>',
'subject' => 'Hello',
'text' => 'Testing some Mailgun awesomness!'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment