string payload expected: <type 'list'> error

R

Ramdas

Dear all,

I believe this is an error which was fixed in Python 2.3 itself. But I
am running Python 2,5.2 and error keeps on cropping up.

Here is my code to construct emails . It works perfectly when I dont
have any attachments. Please find my code at

http://dpaste.com/hold/125574/


However when I try constructing with attachments it crashes with this
error string payload expected: <type 'list'> error.

Going through the trace error I discover that as I call the function
msg.as_string, the function . _handle_text(self, msg) expects a string
object but I am generating list object. Can someone advise what I need
to code to parse series of attachments into an email.

Help appreciated
 
M

MRAB

Ramdas said:
Dear all,

I believe this is an error which was fixed in Python 2.3 itself. But I
am running Python 2,5.2 and error keeps on cropping up.

Here is my code to construct emails . It works perfectly when I dont
have any attachments. Please find my code at

http://dpaste.com/hold/125574/


However when I try constructing with attachments it crashes with this
error string payload expected: <type 'list'> error.

Going through the trace error I discover that as I call the function
msg.as_string, the function . _handle_text(self, msg) expects a string
object but I am generating list object. Can someone advise what I need
to code to parse series of attachments into an email.

Help appreciated

I've been looking at the example in the Python 2.6.2 documentation. It
looks like you should have:

msg1.add_header('Content-Disposition', 'attachment', filename=filename)
 
R

Ramdas

I've been looking at the example in the Python 2.6.2 documentation. It
looks like you should have:

     msg1.add_header('Content-Disposition', 'attachment', filename=filename)

Thanks! I did that correction, however the error still persists .....
 
L

Lie Ryan

Ramdas said:
Dear all,

I believe this is an error which was fixed in Python 2.3 itself. But I
am running Python 2,5.2 and error keeps on cropping up.

Here is my code to construct emails . It works perfectly when I dont
have any attachments. Please find my code at

http://dpaste.com/hold/125574/


However when I try constructing with attachments it crashes with this
error string payload expected: <type 'list'> error.

Except if the traceback is due to a recursive function that doesn't
terminate, please always post the FULL traceback. Don't summarize the
error message.
Going through the trace error I discover that as I call the function
msg.as_string, the function . _handle_text(self, msg) expects a string
object but I am generating list object. Can someone advise what I need
to code to parse series of attachments into an email.

Help appreciated

I smell this part of the code as particularly fishy:

msg1 = MIMEBase(maintype, subtype)
msg1.set_payload(MIMEText(fp.read()))

why are you wrapping a MIMEText inside a MIMEBase?
 
R

Ramdas

Except if the traceback is due to a recursive function that doesn't
terminate, please always post the FULL traceback. Don't summarize the
error message.



I smell this part of the code as particularly fishy:

msg1 = MIMEBase(maintype, subtype)
msg1.set_payload(MIMEText(fp.read()))

why are you wrapping a MIMEText inside a MIMEBase?

I tried with MIMEBASE but it still fails...... I changed it to
MIMEText, hoping that might trick __handletext to think its a string
Anyway that also doesn't work.

Any ideas
 
L

Lie Ryan

I tried with MIMEBASE but it still fails...... I changed it to
MIMEText, hoping that might trick __handletext to think its a string
Anyway that also doesn't work.

just pass the string directly to MIMEBase.set_payload:

fp = open('...')
msg1 = MIMEBase(maintype, subtype)
msg1.set_payload(fp.read())

either that or use a more specialized subclass of MIMEBase (e.g. MIMEText).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top