StackOverflow に関する最初の質問をすることに非常に興奮しています。私は何年にもわたってかなり多くのことを自分自身に教えるためにそれに頼ってきました!
私の質問はこれです。Mandrill の API を介してメールを送信しようとすると、次のエラーが発生します。
{"status":"error","code":-1,"name":"ValidationError","message":"You must specify a key value"}
次のコードは、メールを送信するために使用しているものです。
<?php
$to = 'their@email.com';
$content = '<p>this is the emails html <a href="www.google.co.uk">content</a></p>';
$subject = 'this is the subject';
$from = 'my@email.com';
$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;
?>
メッセージ内の検証エラーの原因は何ですか。私は自分の API キーを提供していますが、それは有効です!
誰かが助けてくれることを願っています。ここで一般的に素晴らしいものに感謝します!
ありがとう!