Skip to content

Commit eb1b3eb

Browse files
committed
Optimize email
1 parent 80aa7c6 commit eb1b3eb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# email
2-
一个可以发送邮件工具。发送普通邮件示例:
2+
参考github.com/jordan-wright/email和smtp协议写的一个可以发送邮件的工具,主要以学习为目的。其发送普通邮件示例:
33
```golang
4+
import (
5+
"net/smtp"
6+
"github.com/quixote-liu/email"
7+
)
8+
49
func main() {
510
e := email.Email{
611
@@ -26,4 +31,3 @@
2631
}
2732
```
2833

29-
参考github.com/jordan-wright/email和smtp协议写的一个可以发送邮件的工具,主要以学习为目的。

0 commit comments

Comments
 (0)