Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dsmtplib.py792 def sendmail(self, from_addr, to_addrs, msg, mail_options=(), argument
863 for option in mail_options:
897 mail_options=(), rcpt_options=()): argument
965 mail_options = (*mail_options, 'SMTPUTF8', 'BODY=8BITMIME')
970 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.rst440 .. method:: SMTP.sendmail(from_addr, to_addrs, msg, mail_options=(), rcpt_options=())
445 (such as ``8bitmime``) to be used in ``MAIL FROM`` commands as *mail_options*.
475 If ``SMTPUTF8`` is included in *mail_options*, and the server supports it,
497 ``SMTPUTF8`` was given in the *mail_options* but is not supported by the
512 mail_options=(), rcpt_options=())
541 ``SMTPUTF8`` and ``BODY=8BITMIME`` are added to *mail_options*.
/external/python/cpython3/Lib/test/
Dtest_smtplib.py675 mail_options = ['STARTTLS']
677 self.smtp.send_message(self.msg, None, None, mail_options)
678 self.assertEqual(mail_options, ['STARTTLS'])
1197 'John', 'Sally', '', mail_options=['BODY=8BITMIME', 'SMTPUTF8'])
1256 def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None, argument
1262 self.last_mail_options = mail_options
1317 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/Doc/whatsnew/
D3.5.rst1681 via the *mail_options* keyword.
1688 via the *mail_options* keyword. It is the responsibility of the
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst3638 *mail_options* argument. Patch by Pablo S. Blum de Aguiar.