0

特定のカテゴリのメールに SendGrid のイベント通知アプリ (http://sendgrid.com/documentation/display/apps/EventNotification) を使用しようとしています。SendGrid アカウントのイベント通知が空です。メールに付けているヘッダーは次のとおりです。

X-SMTPAPI: {"category":"category","filters":{"eventnotification":{"settings":{"url":"theurl"}}}}

しかし、私は自分の URL でコールバックを受けていません。この特定の URL に単純な curl を投稿すると、予想される出力が得られるので、SendGrid でも動作するはずです。

ヘッダーがどのように見えるべきかについてのアイデアはありますか? この特定のアプリのウェブサイトにはあまり多くのドキュメントが見つかりませんでした...

ありがとう!

4

1 に答える 1

0

Here is an example of the header that I am successfully sending with my Sendgrid emails:

headers("X-SMTPAPI" => "{\"unique_args\": {\"customer_id\":\"#{customer.id}\",\"email_batch_id\":\"#{batch_id}\"}, \"category\":\"monthly_statement\"}")

Make sure you have the correct events checked under the event notification settings in Sendgrid.

于 2012-06-01T01:19:58.913 に答える