The django-email tag has no wiki summary.
19
votes
4answers
5k 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" />
...
11
votes
4answers
4k views
django to send AND receive email?
I have gotten quite familiar with django's email sending abilities, but I havn't seen anything about it receiving and processing emails from users. Is this functionality available?
A few google ...
5
votes
2answers
461 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 ...
5
votes
1answer
2k views
Django email
I am using the Gmail SMTP server to send out emails from users of my website.
These are the default settings in my settings.py
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'example@example.com'
...
4
votes
2answers
247 views
Python/Django: sending emails in the background
Imagine a situation in which a user performs an action on a website and admins are notified.
Imagine there are 20 admins to notify. By using normal methods for sending emails with Django the user will ...
3
votes
3answers
117 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
5answers
492 views
Make Django build-in send_mail function working with html by default
I want to substitute build-in send_mail function, that works only with plain-text emails, with my own smart send_mail function, that generates both html and plain-text versions automatically. ...
2
votes
1answer
119 views
How to force error reporting from django management commands?
We are running custom management commands periodically on the server.
Is there any way to get something like error reporting via email working for the command?
2
votes
2answers
447 views
Email templating in django
As we all know (or should), you can use Django's template system to render email bodies:
def email(email, subject, template, context):
from django.core.mail import send_mail
from ...
1
vote
1answer
53 views
What is the proper way to verify an EmailMessage for proper recipient email addresses?
I am developing an application with Django. In forms.py, where the classes for my forms are stored, I have written a clean function to verify that all the emails typed into a textbox adhere to the ...
1
vote
2answers
135 views
Mysterious issue with Django + uWSGI + send email
I'm here to write you after about 1.5 hour of hard debugging.
First of all, these are the interested files:
/project/app/utils.py
from django.core.mail import EmailMultiAlternatives
import ...
1
vote
1answer
120 views
Django Error Reporting Email when Debug = True
Is there a way to get Django to email me error reports even though I have debug set to True?
I didn't see anything in the docs.
Edit:
I'm on Django 1.2 if it matters.
No, this isn't a production ...
1
vote
2answers
241 views
How to create a django app to send massive emails?
I wanted to create a simple interface to send massive mails for a django project (Gitorious, GitHub) but I don't know how to start (models, forms, views, etc.).
I looked at django-mailer but it ...
1
vote
1answer
118 views
Django app for sending periodic emails?
The main functionality of it would be:
check a condition every day
if the condition is true, then send email
Now, I know how to conditionlly send email, but I don`t know how to do make it repeat ...
1
vote
1answer
272 views
Attaching an ical file to a django email
There are plenty of examples of how to attach a file to an email, but I can't find an example of how to attach a MIMEBase instance.
From the docs: attachments "These can be either ...
1
vote
2answers
282 views
Django - email app
Could you please suggest any available app for sending & managing emails in django?
1
vote
1answer
351 views
Connection refused: When I try to send email from my linode server
I have a django project and for email settings I use my personal gmail account. It works just fine when Im testing from localhost. But i get "conection refused error" from django when I try from my ...
0
votes
1answer
36 views
How to customize email backend for EmailMultiAlternatives in Django
Background :-
My email Backend is something like this
EMAIL_HOST ='smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'feedback@example.com'
EMAIL_HOST_PASSWORD = 'XXX'
EMAIL_USE_TLS = True
...
0
votes
2answers
39 views
How do I support users with multiple emails in Django?
I am creating a Django application in which users can have multiple emails including a primary one. In Django, the SQL user table has a single CharField to store a single email address.
My current ...
0
votes
0answers
41 views
How to upgrade a Pre-South Django App to its Post-South version
What if I used an app that didn't use South migration in let's say version 0.4 and wanted to upgrade it to the latest version of let's say 0.6 which has included a migration directory that has ...
0
votes
1answer
24 views
direct_to_template equivalent for email?
I'm writing a little shortcut function to basically do the same thing as direct_to_template for sending email:
from django.template import Context, loader, Template
def direct_to_email(to, subject, ...
0
votes
1answer
83 views
Will Django send me an email if exception rises at admin site?
Django documentation says:
When DEBUG is False, Django will email the users listed in the ADMINS
setting whenever your code raises an unhandled exception and results
in an internal server ...
0
votes
3answers
90 views
Logging all outgoing email in Django
My Django application sends out quite a bit of emails and I've tried testing it thoroughly. However, for the first few months, I'd like to log all outgoing emails to ensure that everything is working ...
0
votes
2answers
75 views
Django Error Reporting - How to know which user triggered the error?
Is there a way I can customize Django error reporting so when it emails me it lets me know which user triggered the error?
I'm in Django 1.2 if it matters.
Much Thanks in advance!
0
votes
3answers
143 views
Sending 1000+ emails in Django
Here is my setup right now:
connection = mail.get_connection()
maillist = []
# my real setup is a little more complex for-loop, but basicly I add all recipients to a list.
for person in ...
0
votes
1answer
376 views
Django default_from_email name
I am looking to add a name to my default_from_email address in Django and wanted to know whether you do this through the settings.py file?
you have your different options.
DEFAULT_FROM_EMAIL
...
0
votes
2answers
85 views
Possible to send date triggered email in django?
I am wondering if it is possible to send an email before a certain date? To explain a bit more we have talks that run every month on the second wednesday of the month and they have a title and ...
0
votes
1answer
320 views
django.core.mail send_email with secure connection
Im trying to use django send_email function but it fails on authentication. In fact, django returns me message along the lines - ssl not found in this django installation.
I do have ssl-1.15 on my ...