Merge pull request #140 from kafene/patch-1

Change string "false" to boolean false in README
This commit is contained in:
Sergey Obukhov 2016-07-20 12:05:23 -07:00 committed by GitHub
commit f70e833f4f

View File

@ -163,7 +163,7 @@ Go to http://bin.mailgun.net. The Postbin will generate a special URL. Save that
# First, instantiate the SDK with your API credentials and define your domain. # First, instantiate the SDK with your API credentials and define your domain.
$mg = new Mailgun('key-example', null, 'bin.mailgun.net'); $mg = new Mailgun('key-example', null, 'bin.mailgun.net');
$mg->setApiVersion('aecf68de'); $mg->setApiVersion('aecf68de');
$mg->setSslEnabled('false'); $mg->setSslEnabled(false);
$domain = 'example.com'; $domain = 'example.com';
# Now, compose and send your message. # Now, compose and send your message.