From 93af097ca3de6ad856a16200f524f7bab8fc822b Mon Sep 17 00:00:00 2001 From: kafene Date: Wed, 20 Jul 2016 10:06:31 -0400 Subject: [PATCH] Change string "false" to boolean false in README The correct value is a boolean --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52955dc..6ce4614 100644 --- a/README.md +++ b/README.md @@ -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.