I have an email that I am reading through Python email that I need to change attachments. The email message class has an attach method, but nothing like the detach method. How to remove an attachment from a multi-page message? If possible, I want to do this without recreating the message from scratch.
Essentially I want:
set_payload() may I help.
set_payload()
set_payload(payload[, charset]). .
set_payload(payload[, charset])
. .
:
>>> from email import mime,message >>> m1 = message.Message() >>> t1=email.MIMEText.MIMEText('t1\r\n') >>> print t1.as_string() Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit t1 >>> m1.attach(t1) >>> m1.is_multipart() True >>> m1.get_payload() [<email.mime.text.MIMEText instance at 0x00F585A8>] >>> t2=email.MIMEText.MIMEText('t2\r\n') >>> m1.set_payload([t2]) >>> print m1.get_payload()[0].as_string() Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit t2 >>>
, , , , Message. , , , . , , ,
Message
, , , , Message .is_multipart() == True - Message .is_multipart() == False - ( - , Message).
As I understand it, this:
Source: https://habr.com/ru/post/1721113/More articles:Sorry, we are unable to access the page you requested:https://fooobar.com/questions/1721108/how-to-add-a-licensing-functionality-to-a-java-programSorry, we are unable to access the page you requested:https://fooobar.com/questions/1721109/index.htmlIs SASS syntax highlighting not working if a package is installed with HAML in Textmate? - sassEmbedded Encoding Management Property - asp.netDatabase management in open source projects - databaseA design pattern for a class that works with a collection of other objects? - language-agnosticHow to add parent directory in SVN? - directoryHow to execute javascript after updating the update panel (cannot get Sys.WebForms.PageRequestManager.getInstance (). Add_endRequest (); work) - javascriptGeneric Lisp: a beginner problem with funcall - lispHow often should applications be subjected to load or load? - testingAll Articles
https://fooobar.com/questions/1721108/how-to-add-a-licensing-functionality-to-a-java-program
https://fooobar.com/questions/1721109/index.html