Re: html email function to a large recipient list problem

2014-05-13 Thread Venkatraman S
I havent looked at your entire problem statement , but https://github.com/pinax/django-mailer does give you many features w.r.t emails OOB. On Mon, May 12, 2014 at 3:49 PM, MikeKJ wrote: > Anyone have an insight into this please? > > -- > You received this message because you are subscribed to

Re: html email function to a large recipient list problem

2014-05-12 Thread MikeKJ
Anyone have an insight into this please? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send e

html email function to a large recipient list problem

2014-05-07 Thread MikeKJ
addresses not incremented def send_html_email(subject_line, html_content, from_address, to_address, text_content=None, image_root=None, attachments=[]): """ Send an html email, which can have embedded images. from_address can look like 'some...@somewhere.net',

Re: Embedding multiple images in html email

2009-10-15 Thread Tim Chase
disable the functionality. To get around it, you have to include the image in the HTML-email itself as a named attachment, and then reference it with as described at[1] Don't forget that some folks fly with HTML email turned off or from mobile devices that may not support HTML email,

Re: Embedding multiple images in html email

2009-10-15 Thread Angel Cruz
ecipient's address # and message to send - here it is sent as one string. s.sendmail(me, myRecipient, msg.as_string()) s.quit() . . . Since it is html, you can embed as many images as you want? On Thu, Oct 15, 2009 at 5:30 AM, Muhammed Abad wrote: > > As the topic says, can I embed mult

Embedding multiple images in html email

2009-10-15 Thread Muhammed Abad
As the topic says, can I embed multiple images in an html email template so the recipient does not have to download them? I know this might be a silly request, but a client has asked me to do this for him and Im absolutely stumped. The closest to a solution I have come to is this : http

Re: How do I add my template content to my html email?

2009-01-10 Thread alex.gay...@gmail.com
You can create a template and render it the same way you would in a view, checkout the render_to_string function(it's in django.template I believe). Alex On Jan 10, 2:41 pm, Michael wrote: > Hello, > I able to send an html email using the code below: > > /// > > de

How do I add my template content to my html email?

2009-01-10 Thread Michael
Hello, I able to send an html email using the code below: /// def emaildiscount(request): subject, from_email, to = 'hello', 'u...@domain.com', 'u...@domain.com' text_content = 'This is an important message.' html_content =

Re: Sending HTML email

2008-09-23 Thread Berco Beute
> You might try reading the > documentation:http://docs.djangoproject.com/en/dev/topics/email/#sending-alternativ... Oops, completely overlooked that. Thanks for the pointer. 2B --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

Re: Sending HTML email

2008-09-23 Thread Matthias Kestenholz
On Tue, Sep 23, 2008 at 7:38 PM, Berco Beute <[EMAIL PROTECTED]> wrote: > > Currently I'm sending plain text mails using: > > ### > from django.core.mail import EmailMessage > email = EmailMessage('hi', 'howdy', host, to) > email.send() > ### > > But now I want to use HTML in the body of the email

Re: Sending HTML email

2008-09-23 Thread Jeff Gentry
On Tue, 23 Sep 2008, Berco Beute wrote: > But now I want to use HTML in the body of the email. How do I format > such a message and can I just send it like above? Emails should be plain text, not HTML ;) --~--~-~--~~~---~--~~ You received this message because yo

Sending HTML email

2008-09-23 Thread Berco Beute
Currently I'm sending plain text mails using: ### from django.core.mail import EmailMessage email = EmailMessage('hi', 'howdy', host, to) email.send() ### But now I want to use HTML in the body of the email. How do I format such a message and can I just send it like above? 2B --~--~-~--

Re: HTML Email

2008-07-02 Thread Peter Melvyn
On 7/3/08, Bobby Roberts <[EMAIL PROTECTED]> wrote: > is there a way in Django to send an actual HTML email? I can only get > it to send as an attachment to a text email which is really pointless > in my opinion. Did you read paragraph "Sending alternative co

Re: HTML Email

2008-07-02 Thread Julien
best practice and the recommended way to go. Cheers, Julien On Jul 3, 2:03 pm, Bobby Roberts <[EMAIL PROTECTED]> wrote: > is there a way in Django to send an actual HTML email?  I can only get > it to send as an attachment to a text email which is really pointles

HTML Email

2008-07-02 Thread Bobby Roberts
is there a way in Django to send an actual HTML email? I can only get it to send as an attachment to a text email which is really pointless in my opinion. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D

Re: Sending an html email

2006-08-27 Thread [EMAIL PROTECTED]
> I am using the template to build the email content. I included links > in it but the email are sent in plain text, not in html. What is the > way to go to send html email ? Eventually, i'd like to add images too. Hi Rem, I got this one off the cookbook a while back. You'

Re: Sending an html email

2006-08-27 Thread Corey Oordt
t the email are sent in plain text, not in html.  What is theway to go to send html email ?  Eventually, i'd like to add images too.Thanks in advance for your helpRem --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Sending an html email

2006-08-26 Thread The Rem
Hi, I am using the template to build the email content. I included links in it but the email are sent in plain text, not in html. What is the way to go to send html email ? Eventually, i'd like to add images too. Thanks in advance for your help