Merge pull request #371 from micschk/patch-2

Update Mollie.php with new URL
This commit is contained in:
Samuel Denis-D'Ortun 2016-10-21 10:42:06 -04:00 committed by GitHub
commit a6d012f66a
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ class Mollie extends Core {
public function sendSMS($message) {
$recipients = implode(',', $this->recipients);
$result = $this->_auth_https_post('www.mollie.nl', '/xml/sms/',
$result = $this->_auth_https_post('api.messagebird.com', '/xml/sms/',
'gateway='.urlencode($this->gateway).
'&username='.urlencode($this->username).
'&password='.urlencode($this->password).
@ -97,4 +97,4 @@ class Mollie extends Core {
}
return $buf;
}
}
}