Re: Creating HTML emails

2007-02-16 Thread Tipan
Thanks for the posts - I've checked out the ticket, the patch from which I assume is required to action the calls: from email.MIMEMultipart import MIMEMultipart from email.MIMEText import MIMEText in Clint's script. In your script, if I assume I pass my HTML to the function as the mess

Re: Creating HTML emails

2007-02-14 Thread Clint Ecker
And please note, this was probably nabbed from some example online and modified to suit my needs, please don't attribute it to me, it's only as an example for you ;) Clint On 2/8/07, Tipan <[EMAIL PROTECTED]> wrote: > > I've been able to create Plain text emails to send to users with an > authen

Re: Creating HTML emails

2007-02-14 Thread Clint Ecker
Forgot to include my send_mail function: http://dpaste.com/hold/5682/ On 2/8/07, Tipan <[EMAIL PROTECTED]> wrote: > > I've been able to create Plain text emails to send to users with an > authentication link which work well, however I'd like to improve the > look of these by outputting in HTML w

Re: Creating HTML emails

2007-02-14 Thread Clint Ecker
Here is a bit of code from a project I did, let me know if I should explain anything: http://dpaste.com/hold/5681/ Seems to work just fine for me! On 2/8/07, Tipan <[EMAIL PROTECTED]> wrote: > > I've been able to create Plain text emails to send to users with an > authentication link which work

Re: Creating HTML emails

2007-02-14 Thread Joseph Heck
There's a sort of long-run-pending discussion on adding this functionality to the Django core - check out http://code.djangoproject.com/ticket/1541which includes patches that you can use in your own code to get the job done in the mean time -joe On 2/8/07, Tipan <[EMAIL PROTECTED]> wrote: > > > I

Creating HTML emails

2007-02-09 Thread Tipan
I've been able to create Plain text emails to send to users with an authentication link which work well, however I'd like to improve the look of these by outputting in HTML with a logo. If I use the send_mail function it simply incorporates the HTML in the plain text. Can anyone point me in the r

Creating HTML emails

2007-02-09 Thread Tipan
I've been able to create Plain text emails to send to users with an authentication link which work well, however I'd like to improve the look of these by outputting in HTML with a logo. If I use the send_mail function it simply incorporates the HTML in the plain text. Can anyone point me in the r