Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Receipients (0.22 sec)

  1. src/net/smtp/example_test.go

    	from       = "******@****.***"
    	msg        = []byte("dummy message")
    	recipients = []string{"******@****.***"}
    )
    
    func ExamplePlainAuth() {
    	// hostname is used by PlainAuth to validate the TLS certificate.
    	hostname := "mail.example.com"
    	auth := smtp.PlainAuth("", "******@****.***", "password", hostname)
    
    	err := smtp.SendMail(hostname+":25", auth, from, recipients, msg)
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 07 22:23:10 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  2. src/text/template/example_test.go

    		Name, Gift string
    		Attended   bool
    	}
    	var recipients = []Recipient{
    		{"Aunt Mildred", "bone china tea set", true},
    		{"Uncle John", "moleskin pants", false},
    		{"Cousin Rodney", "", false},
    	}
    
    	// Create a new template and parse the letter into it.
    	t := template.Must(template.New("letter").Parse(letter))
    
    	// Execute the template for each recipient.
    	for _, r := range recipients {
    		err := t.Execute(os.Stdout, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  3. LICENSES/third_party/forked/shell2junit/LICENSE

    Derivative Works thereof in any medium, with or without modifications, and 
    in Source or Object form, provided that You meet the following conditions: 
    
    a. You must give any other recipients of the Work or Derivative Works a copy 
    of this License; and 
    
    b. You must cause any modified files to carry prominent notices stating that 
    You changed the files; and 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
Back to top