Discussion:
Sending encrypted email
Francis
2007-10-04 20:50:34 UTC
Permalink
Hello,

I need to send an email with a encrypted part in it. Is there a built-
in way to do this in python or django (since it is a django apps).
Maybe the entire can be encrypted, but it is only a piece that
requires it.

i look at some encryption mechanism, but nothing seem to be
straightforward. (PGP, OTP)

Francis


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-***@googlegroups.com
To unsubscribe from this group, send email to django-users-***@googlegroups.com
For more options, visit this group at http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---
Joseph Heck
2007-10-04 21:18:09 UTC
Permalink
Nothing built in - You're going to have to head towards the low-level
libraries to make this happen.

-joe
Post by Francis
Hello,
I need to send an email with a encrypted part in it. Is there a built-
in way to do this in python or django (since it is a django apps).
Maybe the entire can be encrypted, but it is only a piece that
requires it.
i look at some encryption mechanism, but nothing seem to be
straightforward. (PGP, OTP)
Francis
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-***@googlegroups.com
To unsubscribe from this group, send email to django-users-***@googlegroups.com
For more options, visit this group at http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---
Joseph Heck
2007-10-04 21:20:39 UTC
Permalink
Sorry - Its worth noting that you could start by working with the
EmailMultiAlternatives class in django.core.mail. It has a method
"attach_alternative()" that works on the EmailMessage subclass to
attach alternative representations of the content. I'm not sure what
the "right" way to send an encrypted message with GPG is, but that
might be something of use...

-joe
Post by Joseph Heck
Nothing built in - You're going to have to head towards the low-level
libraries to make this happen.
-joe
Post by Francis
Hello,
I need to send an email with a encrypted part in it. Is there a built-
in way to do this in python or django (since it is a django apps).
Maybe the entire can be encrypted, but it is only a piece that
requires it.
i look at some encryption mechanism, but nothing seem to be
straightforward. (PGP, OTP)
Francis
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-***@googlegroups.com
To unsubscribe from this group, send email to django-users-***@googlegroups.com
For more options, visit this group at http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Continue reading on narkive:
Loading...