django-email refers to questions about sending emails in your Django application
1
vote
2answers
38 views
Upload files via email in Django. General algorithm
How to implement something like this:
If someone send email with file in attachment to system@mail.com, this file is added automatically to database.
Please general algorithm how to do or suggest ...
0
votes
1answer
36 views
Django mailer import
According to the documentation on django-mailer, to use django-mailer for all my emails, I just need to put this in settings.py:
EMAIL_BACKEND = "mailer.backend.DbBackend"
Which I did.
But I get ...
0
votes
1answer
18 views
Errors using Django Templated Email
I'm trying to use Django-Templated-Email (0.4.7) to send an e-mail, and I keep receiving the following error:
TypeError at /intake/basic/
send_templated_mail() takes at least 4 arguments (4 given)
...
0
votes
1answer
53 views
how to get more information from website exploit error messages
I've been getting many of these error emails from my django site. They look like they are triggered from some automated exploit. Here is one example.
Referrer: ...
0
votes
1answer
32 views
django sending mail using pre_save
1.As a part of learning django i am trying to send a mail to an email id using pre_save signal.
2.A mail should sent to an email id which is mentioned in the field.I dont't have a proper way to do ...
0
votes
1answer
46 views
Error in Django send_mail function?
I am trying to use send_mail from Django Documentation:
send_mail('Subject here', 'Here is the message.', 'from@gmail.com',
['to@gmail.com'], fail_silently=False)
I am using the real e-mail ...
0
votes
1answer
98 views
Where to store email templates?
I'm writing a Django 1.4 app that will send HTML email. I'm using Django templates to render the email content, but I'm unsure how to store the templates.
I can store them in an email app (like I ...
3
votes
1answer
112 views
Django confirm email. Change value from false to true
This is my model:
from django.db import models
class Meeting(models.Model):
name = models.CharField(max_length=255)
time = models.DateTimeField()
confirmed = ...
1
vote
1answer
109 views
Send an email once object meets certain criteria
[Hopefully I entitled this post correctly]
I have a (sort of) 'follow' twitter thing going on. Users can follow a company profile object, which creates a follower object.
class ...
0
votes
1answer
390 views
Sending html emails with images using Django templates
I'm trying to use the following snippet:
http://djangosnippets.org/snippets/2661/#c4539
But I encountered some errors
1 ) i cannot import MIMEImage form email. I get an error: No module named ...
0
votes
1answer
208 views
Django-SES does not regard DEFAULT_FROM_EMAIL in mail_managers
I am using django-ses to send e-mail using AWS Simple E-mail Service. I have no problem sending using send_mail() but from the same e-mail address set in settings, using mail_managers() I am getting a ...
1
vote
1answer
57 views
Django, overriding “is_authenticated()” when we have Email instead of username
I'm using the django-email-as-username app for using email rather than username for authentication, and it works like a charm.
Now, in view I want to call
if request.user.is_authenticated()
but ...
0
votes
0answers
146 views
send_mail is working while EmailMultiAlternatives.send is not
I am finding this very odd. This piece of code doesn't send two email messages. The first way using send_mail is working find. While using EmailMultiAlternatives isn't sending any messages. I've ...
0
votes
1answer
728 views
Django send_mail not working
When the view that sends the email is used nothing happens, i then entered send_mail(...) into the python shell and it returned 1 but i didn't receive any emails.
This is my settings.py
...
1
vote
1answer
463 views
Django EmailMultiAlternatives sending to multiple “to” addresses
Is there a way in Django EmailMultiAlternatives that you can send to multiple "to" addresses, without having to send it again?
Have tried separating the email int the tuple by commas, but only the ...
0
votes
1answer
452 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
...
1
vote
2answers
184 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 ...
3
votes
3answers
647 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 ...
1
vote
1answer
119 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
409 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 ...
0
votes
0answers
95 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
52 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
289 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 ...
8
votes
3answers
2k 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
352 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 ...
4
votes
2answers
278 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!
1
vote
1answer
312 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
524 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 ...
2
votes
1answer
453 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?
1
vote
1answer
257 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 ...
0
votes
3answers
294 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 ...
3
votes
5answers
1k 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. ...
1
vote
1answer
460 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 ...
3
votes
2answers
776 views
Django - email app
Could you please suggest any available app for sending & managing emails in django?
5
votes
1answer
1k 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
147 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 ...
1
vote
1answer
642 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 ...
44
votes
5answers
14k 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" />
...
0
votes
1answer
520 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 ...
5
votes
3answers
922 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 ...
6
votes
2answers
738 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 ...
15
votes
6answers
6k 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 ...
8
votes
1answer
5k 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'
...
