Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mandrill ValidationError

Tags:

json

php

mandrill

Very excited to be asking my first question on StackOverflow. I've been relying on it to teach myself quite a lot over the years!

My question is this. I am getting the following error when trying to send a mail through Mandrill's API:

{"status":"error","code":-1,"name":"ValidationError","message":"You must specify a key value"}

The code that follows is what I am using to try to send the mail:

<?php
$to = '[email protected]';
$content = '<p>this is the emails html <a href="www.google.co.uk">content</a></p>';
$subject = 'this is the subject';
$from = '[email protected]';

$uri = 'https://mandrillapp.com/api/1.0/messages/send.json';
$content_text = strip_tags($content);

$postString = '{
"key": "RR_3yTMxxxxxxxx_Pa7gQ",
"message": { 
 "html": "' . $content . '",
 "text": "' . $content_text . '",
 "subject": "' . $subject . '",
 "from_email": "' . $from . '",
 "from_name": "' . $from . '",
 "to": [
 {
 "email": "' . $to . '",
 "name": "' . $to . '"
 }
 ],
 "track_opens": true,
 "track_clicks": true,
 "auto_text": true,
 "url_strip_qs": true,
 "preserve_recipients": true
},
"async": false
}';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postString);
$result = curl_exec($ch);
echo $result;

?>

What could be causing the validation error in the message. I am providing my API key, AND it's valid!

Hope someone will be able to help, and thanks for generally being AWESOME here!

Thanks!

like image 673
Dan Avatar asked Jul 17 '13 12:07

Dan


4 Answers

You may also want to just use arrays, and let PHP handle the JSON encoding for you. This particular error is common if the JSON is invalid for some reason. So, for example, you could set your parameters like this:

$params = array(
    "key" => "keyhere",
    "message" => array(
        "html" => $content,
        "text" => $content_text,
        "to" => array(
            array("name" => $to, "email" => $to)
        ),
        "from_email" => $from,
        "from_name" => $from,
        "subject" => $subject,
        "track_opens" => true,
        "track_clicks" => true
    ),
    "async" => false
);

$postString = json_encode($params);

You can also use json_decode to parse the response if needed.

like image 182
Kaitlin Avatar answered Nov 13 '22 11:11

Kaitlin


Bansi's answer worked for Dan B, but if someone else is having the same issue is good to check if the content have special characters (accents,umlauts,cedillas,apostrophes,etc). If that's the case the solution could be to utf8 encode the text:

$content = utf8_encode('<p>Greetings from Bogotá, Colombia. Att:François</p>');
like image 43
Jorge Palacio Avatar answered Nov 13 '22 11:11

Jorge Palacio


I don't know about mandrill, but your $content string has double quotes" in it and your delimiter in the $postString is also double quotes. This is going to break in any language. You need to escape the double quotes in the $content as required by mandril.

"html": "' . $content . '", will translate to

"html": "<p>this is the emails html <a href="www.google.co.uk">content</a></p>",
                                            ^                ^

Try

 "html": "' . str_replace('"','\\"',$content) . '",
 "text": "' . str_replace('"','\\"',$content_text) . '",

Instead of

 "html": "' . $content . '",
 "text": "' . $content_text . '",
like image 3
bansi Avatar answered Nov 13 '22 12:11

bansi


The PHP Mandrill API error: "Mandrill_ValidationError - You must specify a key value"

This error can also indicate that json_encode() is failing to encode and returning an empty string. When the empty string is submitted to Mandrill via curl, it fails to let you know that it got totally empty POST content, and instead issues the helpful message "You must specify a key value".

Obviously this problem could be mitigated by better detection at several levels:

  • Mandrill at API level could return an error like "Empty POST"
  • The Mandrill.php API class could return an error like "json_encode fail, possible non-base64 image or content problem"
  • The Mandrill.php API class could check for non-base64 content in images and give an error like "unencoded image"
  • It would be kind of nice if json_encode() threw some sort of error (not sure re this one)

None of this is being done at this point, hence this was unnecessarily hard to debug.

The simple fix in my case was to effectively change code to run base64_encode() before including image content, that is:

          'content' => base64_encode(file_get_content("image.jpg"),

A better fix is, as above, to upgrade the Mandrill.php API file to detect a failure to encode and throw an error.

like image 1
Brian C Avatar answered Nov 13 '22 12:11

Brian C