Home
last modified time | relevance | path

Searched refs:mail_options (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/
Dsmtplib.py788 def sendmail(self, from_addr, to_addrs, msg, mail_options=(), argument
859 for option in mail_options:
893 mail_options=(), rcpt_options=()): argument
961 mail_options = (*mail_options, 'SMTPUTF8', 'BODY=8BITMIME')
966 return self.sendmail(from_addr, to_addrs, flatmsg, mail_options,
Dsmtpd.py383 'mail_options': self.mail_options,
535 self.mail_options = params.upper().split()
536 params = self._getparams(self.mail_options)
/external/python/cpython3/Doc/library/
Dsmtpd.rst58 ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8*
66 in the ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8*
87 *mail_options*:
93 same as *mail_options* but for the ``RCPT`` command.
Dsmtplib.rst422 .. method:: SMTP.sendmail(from_addr, to_addrs, msg, mail_options=(), rcpt_options=())
427 (such as ``8bitmime``) to be used in ``MAIL FROM`` commands as *mail_options*.
457 If ``SMTPUTF8`` is included in *mail_options*, and the server supports it,
479 ``SMTPUTF8`` was given in the *mail_options* but is not supported by the
494 mail_options=(), rcpt_options=())
523 ``SMTPUTF8`` and ``BODY=8BITMIME`` are added to *mail_options*.
/external/python/cpython3/Lib/test/
Dtest_smtplib.py601 mail_options = ['STARTTLS']
603 self.smtp.send_message(self.msg, None, None, mail_options)
604 self.assertEqual(mail_options, ['STARTTLS'])
1093 'John', 'Sally', '', mail_options=['BODY=8BITMIME', 'SMTPUTF8'])
1150 def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None, argument
1156 self.last_mail_options = mail_options
1205 mail_options=['BODY=8BITMIME', 'SMTPUTF8'])
/external/python/cpython2/Lib/
Dsmtplib.py667 def sendmail(self, from_addr, to_addrs, msg, mail_options=[], argument
731 for option in mail_options:
/external/python/cpython2/Doc/library/
Dsmtplib.rst291 .. method:: SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options])
296 (such as ``8bitmime``) to be used in ``MAIL FROM`` commands as *mail_options*.
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst577 *mail_options* argument. Patch by Pablo S. Blum de Aguiar.
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1681 via the *mail_options* keyword.
1688 via the *mail_options* keyword. It is the responsibility of the