Commit a101bfc6 authored by Rob Pike's avatar Rob Pike

doc/go1.1.html: net/mail, net/smtp

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7835049
parent 8480e6f4
...@@ -837,12 +837,19 @@ being fully consumed. ...@@ -837,12 +837,19 @@ being fully consumed.
The new <a href="/pkg/net/http/cookiejar/">net/http/cookiejar</a> package provides the basics for managing HTTP cookies. The new <a href="/pkg/net/http/cookiejar/">net/http/cookiejar</a> package provides the basics for managing HTTP cookies.
</li> </li>
<li> TODO: <li>
<code>net/mail</code>: ParseAddress, ParseAddressList The <a href="/pkg/net/mail/"><code>net/mail</code></a> package has two new functions,
<a href="/pkg/net/mail/#ParseAddress"><code>ParseAddress</code></a> and
<a href="/pkg/net/mail/#ParseAddressList"><code>ParseAddressList</code></a>,
to parse RFC 5322-formatted mail addresses into
<a href="/pkg/net/mail/#Address"><code>Address</code></a> structures.
</li> </li>
<li> TODO: <li>
<code>net/smtp</code>: Client.Hello The <a href="/pkg/net/smtp/"><code>net/smtp</code></a> package's
<a href="/pkg/net/smtp/#Client"><code>Client</code></a> type has a new method,
<a href="/pkg/net/smtp/#Client.Hello"><code>Hello</code></a>,
which transmits a <code>HELO</code> or <code>EHLO</code> message to the server.
</li> </li>
<li> <li>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment