HomeSort by relevance Sort by last modified time
    Searched defs:Mail (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/net/smtp/
smtp.go 5 // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
50 // The addr must include a port, as in "mail.example.com:smtp".
242 // Mail issues a MAIL command to the server using the provided email address.
243 // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
245 // This initiates a mail transaction and is followed by one or more Rcpt calls.
246 func (c *Client) Mail(from string) error {
253 cmdStr := "MAIL FROM:<%s>"
264 // A call to Rcpt must be preceded by a call to Mail and may be followed by
286 // can be used to write the mail headers and body. The caller shoul
    [all...]
  /prebuilts/go/linux-x86/src/net/smtp/
smtp.go 5 // Package smtp implements the Simple Mail Transfer Protocol as defined in RFC 5321.
50 // The addr must include a port, as in "mail.example.com:smtp".
242 // Mail issues a MAIL command to the server using the provided email address.
243 // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
245 // This initiates a mail transaction and is followed by one or more Rcpt calls.
246 func (c *Client) Mail(from string) error {
253 cmdStr := "MAIL FROM:<%s>"
264 // A call to Rcpt must be preceded by a call to Mail and may be followed by
286 // can be used to write the mail headers and body. The caller shoul
    [all...]

Completed in 192 milliseconds