Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Postmark PHP class changelog
============================

## 0.4.6

* Disable Curl cert verification

## 0.4.5

* Internally uses constants for recipients
Expand Down
1 change: 1 addition & 0 deletions Postmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ public function send($options = array())
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . '/Certificate/cacert.pem');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

$return = curl_exec($ch);
$curlError = curl_error($ch);
Expand Down