First time here? Check out the FAQ!
1

How to integrate other Email Backends?

I'd like to integrate a 3rd party email service like Sendgrid or Mail Chimp (with Amazon SES) to handle transactional emails for a askbot project. It would be ideal to add support for this with as little source hacking as possible. With newer versions of Django you can specify an Email Backend, but this feature is not available in Django 1.1. Can you recommend the best approach for email service integration? I have not been able to find very much documentation on email sending in general, so any direction you can provide would be helpful. Thank you.

godshall's avatar
11
godshall
asked 2011-03-07 15:59:51 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Hello, it is possible to use askbot with Django 1.2, there will be a difference in dependency - a later version of Coffin library will be required.

If you run into other difficulties working with Django 1.2 - please follow up.

In general - it is the best to implement a custom EmailBackend. Askbot uses built in django functions to send mail, so with a custom backend it will be possible to make use of other email services.

Evgeny's avatar
13.2k
Evgeny
answered 2011-03-07 17:48:50 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments