Forces ampersand as query separator for mailers

This commit is contained in:
Vlad
2017-03-08 14:34:35 -05:00
parent 3a9db95c37
commit d05d033727
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ class SendGrid {
'headers' => array(
'Authorization' => $this->auth()
),
'body' => http_build_query($body)
'body' => http_build_query($body, null, '&')
);
}
}