-
Notifications
You must be signed in to change notification settings - Fork 139
Closed
Labels
Description
when adding a new webhook to mandrill, it verifies my webhook url:
import mandrill
mandrill_client = mandrill.Mandrill('SOMEKEY')
events = ['send', 'open', 'click']
result = mandrill_client.webhooks.add(url='https://AUTH:CODE@someurl.com/webhooks/mail/mandrill/tracking/', description='PreProd', events=events)
but this fails with You must set ANYMAIL_MANDRILL_WEBHOOK_KEY or ANYMAIL = {'MANDRILL_WEBHOOK_KEY': ...} or MANDRILL_WEBHOOK_KEY in your Django settings as I don't have the key yet.
hence, no key, no verification, no verification, no key... hen-egg issue...
pls help!