ドキュメントで指定されているように、google_analytics_domains および google_analytics_campaign フィールドの配列を送信する必要があります。
http://mandrillapp.com/api/docs/messages.html#method=send
しかし、mandrill は間違った utm_campaign でリンクを生成します (Google アナリティクスは [0] の部分が好きではありません):
utm_campaign[0]=test_campaign
配列の代わりに文字列を送信しようとしましたが、mandrallapi が私を追い出しました (配列を入力してください)... 何か見逃しましたか? ご協力いただきありがとうございます !
mandrillapp を使用したリクエストの例を次に示します。
{
"key":"apikey",
"message":{
"html":"example html",
"text":"example text",
"subject":"example subject",
"from_email":"from_email@example.com",
"from_name":"example from_name",
"to":[
{
"email":"email@example.com",
"name":"example name"
}
],
"headers":{
"...":"..."
},
"track_opens":true,
"track_clicks":true,
"auto_text":true,
"url_strip_qs":true,
"bcc_address":"bcc_address@example.com",
"merge":true,
"global_merge_vars":[
{
"name":"example name",
"content":"example content"
}
],
"merge_vars":[
{
"rcpt":"rcpt@example.com",
"vars":[
{
"name":"example name",
"content":"example content"
}
]
}
],
"tags":[
"example tags[]"
],
"google_analytics_domains":[
"..."
],
"google_analytics_campaign":[
"..."
],
"metadata":[
"..."
],
"attachments":[
{
"type":"example type",
"name":"example name",
"content":"example content"
}
]
}
}