mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 13:43:30 +03:00
Merge pull request #57 from jchamberlain/custom-data
Allow any data type for custom data
This commit is contained in:
commit
24085530d9
1 changed files with 1 additions and 9 deletions
|
@ -314,15 +314,7 @@ class MessageBuilder
|
|||
|
||||
public function addCustomData($customName, $data)
|
||||
{
|
||||
if (is_array($data)) {
|
||||
$jsonArray = json_encode($data);
|
||||
$this->message['v:' . $customName] = $jsonArray;
|
||||
|
||||
return $this->message['v:' . $customName];
|
||||
} else {
|
||||
throw new InvalidParameter(INVALID_PARAMETER_NON_ARRAY);
|
||||
}
|
||||
|
||||
$this->message['v:' . $customName] = json_encode($data);
|
||||
}
|
||||
|
||||
public function addCustomParameter($parameterName, $data)
|
||||
|
|
Loading…
Add table
Reference in a new issue