From: Rob Pike Date: Tue, 26 Mar 2013 18:47:27 +0000 (-0700) Subject: doc/go1.1.html: net/mail, net/smtp X-Git-Tag: go1.1rc2~322 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a101bfc6201ff81075a1ff57516a487d14e092aa;p=gostls13.git doc/go1.1.html: net/mail, net/smtp R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7835049 --- diff --git a/doc/go1.1.html b/doc/go1.1.html index d08b1c3964..3dc1097637 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -837,12 +837,19 @@ being fully consumed. The new net/http/cookiejar package provides the basics for managing HTTP cookies. -
  • TODO: -net/mail: ParseAddress, ParseAddressList +
  • +The net/mail package has two new functions, +ParseAddress and +ParseAddressList, +to parse RFC 5322-formatted mail addresses into +Address structures.
  • -
  • TODO: -net/smtp: Client.Hello +
  • +The net/smtp package's +Client type has a new method, +Hello, +which transmits a HELO or EHLO message to the server.