Searched refs:mail_options (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/ |
D | smtplib.py | 808 def sendmail(self, from_addr, to_addrs, msg, mail_options=(), argument 879 for option in mail_options: 913 mail_options=(), rcpt_options=()): argument 981 mail_options = (*mail_options, 'SMTPUTF8', 'BODY=8BITMIME') 986 return self.sendmail(from_addr, to_addrs, flatmsg, mail_options,
|
D | smtpd.py | 394 'mail_options': self.mail_options, 546 self.mail_options = params.upper().split() 547 params = self._getparams(self.mail_options)
|
/third_party/python/Doc/library/ |
D | smtpd.rst | 57 ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8* 65 in the ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8* 86 *mail_options*: 92 same as *mail_options* but for the ``RCPT`` command.
|
D | smtplib.rst | 441 .. method:: SMTP.sendmail(from_addr, to_addrs, msg, mail_options=(), rcpt_options=()) 446 (such as ``8bitmime``) to be used in ``MAIL FROM`` commands as *mail_options*. 476 If ``SMTPUTF8`` is included in *mail_options*, and the server supports it, 498 ``SMTPUTF8`` was given in the *mail_options* but is not supported by the 513 mail_options=(), rcpt_options=()) 542 ``SMTPUTF8`` and ``BODY=8BITMIME`` are added to *mail_options*.
|
/third_party/python/Lib/test/ |
D | test_smtplib.py | 745 mail_options = ['STARTTLS'] 747 self.smtp.send_message(self.msg, None, None, mail_options) 748 self.assertEqual(mail_options, ['STARTTLS']) 1310 'John', 'Sally', '', mail_options=['BODY=8BITMIME', 'SMTPUTF8']) 1369 def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None, argument 1375 self.last_mail_options = mail_options 1430 mail_options=['BODY=8BITMIME', 'SMTPUTF8'])
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1681 via the *mail_options* keyword. 1688 via the *mail_options* keyword. It is the responsibility of the
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 3638 *mail_options* argument. Patch by Pablo S. Blum de Aguiar.
|