问题
Mandrill is a fairly new transactional email service from the makers of MailChimp. I would like to use this service to track emails for clients.
Similar to this question about a rails implementation of tracking and forwarding, my Django application would provide each user with a unique email address, and any emails sent to that address would be tracked by Mandrill automatically, and that tracking data would then be provided to users in a nice interface.
I know Mandrill can act as an SMTP server. I don't know a lot about this, but I know that this means it is at least possible to read an email and compose an email. Since Mandrill can track incoming emails this handles pretty much everything I need.
Is there a better way to do this? Ideally I'd like to simply forward the message unaltered and just track it.
回答1:
Have you looked at https://mandrillapp.com/ , it gives you everything you need for Tracking whats happening with each email. Also the https://mandrillapp.com/api/docs/ Api has all the various functions and lets you retrieve data from your app. What worked for me was just playing with this and checking on what options are available. Also the Mandrill Customer support is very good is getting back on various queries thus try that as well. http://help.mandrill.com/anonymous_requests/new
Is there anything in particular you would like to track?
来源:https://stackoverflow.com/questions/11803149/email-forwarding-and-tracking-with-mandrill-and-django