How can I send mail to 'Cc'address in smtplib?

Greg Jorgensen gregj at pobox.com
Sun Oct 22 14:33:09 EDT 2000


The bug in quopri.py described below is fixed in 2.0.

"Gilles Lenfant" <glenfant at equod.com.nospam> wrote in message
news:8stjbg$58g$1 at reader1.imaginet.fr...

> WARNING
> "quopri.py" module is buggy (python 1.5.2, don't know for others) and does
> not encode text as the mail client expect it !
> Edit the "quopri.py" module and comment out or remove the first 3 lines of
> the "quote" function. It should look like this:
> ----- quopri.py -----
> ...
> def quote(c):
> ## if c == ESCAPE:
> ##  return ESCAPE * 2
> ## else:
>   i = ord(c)
>   return ESCAPE + HEX[i/16] + HEX[i%16]
> ...
> --- end quopri.py ---


--
Greg Jorgensen
Deschooling Society
Portland, Oregon, USA
gregj at pobox.com





More information about the Python-list mailing list