Questions tagged [django-mailer]

Django-mailer is a pluggable django app for mail queuing and management

Django-mailer is a pluggable django app for mail queuing and management

Quote from docs:

A reusable Django app for queuing and throttling of email sending, scheduled sending, consolidation of multiple notifications into single emails and logging of mail failures.

50 questions
0
votes
1 answer

Send HTML Email with Inline Images in Django

I am trying to send HTML Email with Inline Images as shown in the article : https://www.vlent.nl/weblog/2014/01/15/sending-emails-with-embedded-images-in-django/. I have got it working. Now, i want to integrate it with Django mailer:…
doubleo
  • 4,389
  • 4
  • 16
  • 19
0
votes
1 answer

django-mailer creates multiple db entries from email address

I've just implemented django-mailer as it seemed to be the best way to send mail asynchronously from django. For some reason, django-mailer is creating a db entry for each letter of the recipient's email address, with the "To" field having one…
Erve1879
  • 845
  • 1
  • 14
  • 26
0
votes
2 answers

Send email on GAE using Django module (django.core.mail)

Before the migration of my app to GAE, I was using the following code to send emails and it worked pretty good: from django.core.mail import send_mail subject = 'Hello!' msg = '\n \n Hello World!' sender = settings.DEFAULT_FROM_EMAIL to =…
Raulsc
  • 75
  • 2
  • 12
0
votes
0 answers

Django mail sending error

I have separate django project and one python script file. The script file will not depends on project(that was available in different path). The script file will generate some data and need to send mail to corresponding user. In this case i am…
keshavv
  • 147
  • 1
  • 12
0
votes
1 answer

deferred email sending in django?

Is there an easy way to be able to send an email at a later time, say Aug 1, 2012 6 pm? I have tried to read some documentation on django-mailer, but I could not get to an answer. I am starting out in web development so may not be able to hack the…
user462208
  • 23
  • 4
1 2 3
4