Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
4k views

Creating email templates with Django

I want to send HTML-emails, using Django templates like this: <html> <body> hello <strong>{{username}}</strong> your account activated. <img src="mysite.com/logo.gif" /> ...
5
votes
1answer
444 views

Django email digest

Is there an existing plug-in to produce daily or weekly digest emails in Django? (We want to combine many small notifications into one email, rather than bother people all the time.) Django-mailer ...
3
votes
3answers
100 views

How does one send an email to 10,000 users in Django?

My Django application has 10,000 users, all with emails. I would like to send an email message to all of them say once a month. This message could have some pdf attachments. What I have tried is ...
3
votes
1answer
409 views

Django - Sending Bulk Mails using django-mailer

I am using django-mailer for sending emails. I have cron job running to send mails from the queue every minute. I use GMail's SMTP server to send mails. django-mailer will send mails one by one. The ...
2
votes
1answer
118 views

django-notification & django-mailer… how do they work together?

I'm looking at implementing some email notification in my app. Django-notification or Django-mailer both look appropriate. I'm reading through the docs and trying to figure out how they work together. ...
2
votes
2answers
1k views

How to do scheduled sending of email with django-mailer

I'm making a django app that needs to be able to make emails and then send these out at a given time. I was thinking i could use django-mailer to put things in que and then send it of. But even though ...
1
vote
1answer
56 views

Is there a Django app to aggregate/consolidate notifications to be mailed at once?

Today our website emails the user for every "event" who needs to be notified, but the number of "notifications" is becoming huge, annoying our users with tons of daily emails. Instead, I want to ...
0
votes
1answer
15 views

Django Mailer 2 — will running the command via cron double up the commands?

I am using Django-Mailer-2 to send email from a Django App. If I have the command python manage.py send_mail run every 5 minutes via the crontab, it will send any emails that have been added to the ...
0
votes
0answers
88 views

Use django-mailer with local exim?

I have a django app for sending mails through gmail. Right now I'm using it only for sending mails everytime someone registers for the app, but I expect to give it more use in the future. I've tried ...
0
votes
1answer
149 views

strange behavior with django send_mail

I am using Django-mailer's send_mail running as cron to send out emails. I noticed this strange behavior in its log file. acquiring lock... acquired. sending message 'Confirm email address' to ... ...
0
votes
1answer
271 views

Django - python manage.py send_mail - Unknown command: 'send_mail'

jafte@11156:~/django/sp$ python manage.py shell Python 2.5.2 (r252:60911, Jan 20 2010, 21:48:48) [GCC 4.2.4 (Ubuntu 4.2.4-1ubuntu3)] on linux2 Type "help", "copyright", "credits" or "license" for more ...
0
votes
3answers
960 views

how to use django mailer without PINAX

I want to use django-mailer without PINAX. When I run ./manager.py send_mail it prints: Unknown command: 'send_mail' Type 'manage.py help' for usage. How do I fix this? Python 2.5.1 (r251:54863, ...