Change string "false" to boolean false in README

The correct value is a boolean
This commit is contained in:
kafene 2016-07-20 10:06:31 -04:00 committed by GitHub
parent 976a76a3b5
commit 93af097ca3

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.
$mg = new Mailgun('key-example', null, 'bin.mailgun.net');
$mg->setApiVersion('aecf68de');
$mg->setSslEnabled('false');
$mg->setSslEnabled(false);
$domain = 'example.com';
# Now, compose and send your message.