/external/e2fsprogs/scrub/ |
D | e2scrub_fail.in | 11 if ! type sendmail > /dev/null 2>&1; then 25 systemctl status --full --lines 4294967295 "e2scrub@${device}") | sendmail -t -i
|
/external/python/cpython3/Lib/test/ |
D | test_smtplib.py | 312 smtp.sendmail('John', 'Sally', m) 328 smtp.sendmail('John', 'Sally', m) 343 smtp.sendmail('John', 'Sally', m) 357 smtp.sendmail('<>', 'Sally', m) 589 self.smtp.has_extn, self.smtp.sendmail = Mock(), Mock() 595 self.assertEqual(self.smtp.sendmail.call_args_list[0][0][3], 597 self.assertEqual(self.smtp.sendmail.call_args_list[1][0][3], 605 self.assertEqual(self.smtp.sendmail.call_args_list[0][0][3], 1045 smtp.sendmail('John', 'Sally', 'test message') 1054 smtp.sendmail('John', 'Sally', 'test message') [all …]
|
/external/python/cpython2/Doc/includes/ |
D | email-simple.py | 23 s.sendmail(me, [you], msg.as_string())
|
D | email-alternative.py | 47 s.sendmail(me, you, msg.as_string())
|
D | email-mime.py | 30 s.sendmail(me, family, msg.as_string())
|
D | email-dir.py | 109 s.sendmail(opts.sender, opts.recipients, composed)
|
/external/python/cpython2/Doc/library/ |
D | smtplib.rst | 39 :meth:`sendmail`, and :meth:`~smtplib.quit` methods. 114 same sort as :meth:`SMTP.sendmail` returns. 199 It will be implicitly called by the :meth:`sendmail` when necessary. 216 :meth:`sendmail` when necessary. 291 .. method:: SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options]) 394 server.sendmail(fromaddr, toaddrs, msg) 401 via :meth:`sendmail`; see :ref:`email-examples`.
|
/external/autotest/client/common_lib/ |
D | mail.py | 38 server.sendmail(from_address, to_addresses + cc_addresses, message.as_string())
|
D | mail_unittest.py | 33 def sendmail(self, from_address, to_address, message): member in SMTP
|
/external/python/cpython3/Doc/library/ |
D | smtplib.rst | 44 :meth:`sendmail`, and :meth:`SMTP.quit` methods. 158 same sort as :meth:`SMTP.sendmail` returns. 254 It will be implicitly called by the :meth:`sendmail` when necessary. 270 :meth:`sendmail` when necessary. 422 .. method:: SMTP.sendmail(from_addr, to_addrs, msg, mail_options=(), rcpt_options=()) 436 envelope used by the transport agents. ``sendmail`` does not modify the 496 This is a convenience method for calling :meth:`sendmail` with the message 498 the same meaning as for :meth:`sendmail`, except that *msg* is a ``Message`` 515 calls :meth:`sendmail` to transmit the resulting message. Regardless of the 579 server.sendmail(fromaddr, toaddrs, msg)
|
D | email.policy.rst | 78 file on disk and pass it to the system ``sendmail`` program on a Unix system: 100 >>> p = Popen(['sendmail', msg['To'].addresses[0]], stdin=PIPE) 115 ``sendmail's`` ``stdin``, where the default policy would use ``\n`` line
|
/external/python/cpython3/Lib/ |
D | smtplib.py | 788 def sendmail(self, from_addr, to_addrs, msg, mail_options=(), member in SMTP 966 return self.sendmail(from_addr, to_addrs, flatmsg, mail_options, 1115 server.sendmail(fromaddr, toaddrs, msg)
|
/external/toolchain-utils/cros_utils/ |
D | email_sender.py | 80 s.sendmail(email_from, email_to, msg.as_string())
|
/external/bcc/tools/ |
D | ext4slower_example.txt | 24 06:35:01 cron 16545 R 128 0 14.76 sendmail 25 06:35:01 sendmail 16545 R 274 0 10.88 dynamicmaps.cf
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 719 server.sendmail(fromaddr, toaddrs, msg) 722 A Unix-only alternative uses sendmail. The location of the sendmail program 723 varies between systems; sometimes it is ``/usr/lib/sendmail``, sometimes 724 ``/usr/sbin/sendmail``. The sendmail manual page will help you out. Here's 729 SENDMAIL = "/usr/sbin/sendmail" # sendmail location
|
/external/python/cpython3/Doc/faq/ |
D | library.rst | 739 server.sendmail(fromaddr, toaddrs, msg) 742 A Unix-only alternative uses sendmail. The location of the sendmail program 743 varies between systems; sometimes it is ``/usr/lib/sendmail``, sometimes 744 ``/usr/sbin/sendmail``. The sendmail manual page will help you out. Here's 749 SENDMAIL = "/usr/sbin/sendmail" # sendmail location
|
/external/python/cpython2/Lib/ |
D | smtplib.py | 667 def sendmail(self, from_addr, to_addrs, msg, mail_options=[], member in SMTP 883 server.sendmail(fromaddr, toaddrs, msg)
|
D | smtpd.py | 367 refused = s.sendmail(mailfrom, rcpttos, data)
|
/external/clang/tools/scan-view/share/ |
D | Reporter.py | 136 s.sendmail(msg['From'], msg['To'], msg.as_string())
|
/external/toybox/toys/pending/ |
D | crond.c | 475 static void sendmail(CRONFILE *cfile, JOB *job) in sendmail() function 519 sendmail(cfile, job); in count_running_jobs()
|
/external/toolchain-utils/crb/ |
D | crb_driver.py | 255 s.sendmail(me, [you], msg.as_string())
|
/external/iputils/ |
D | tftpd.c | 215 { "mail", validate_user, sendmail, recvmail, 1 },
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/Reviewing/ |
D | find_interesting_reviews.py | 567 s.sendmail(email_msg['From'], email_msg['To'], email_msg.as_string())
|
/external/python/cpython2/Doc/tutorial/ |
D | stdlib.rst | 160 >>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org',
|
/external/python/cpython2/Lib/test/ |
D | test_smtplib.py | 230 smtp.sendmail('John', 'Sally', m)
|