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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
godshall's avatar
11
godshall
asked 14 years ago

Comments

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 14 years ago
link

Comments

see more comments