fc074199 by TossPig

Update mail.go

1 parent d69eee23
...@@ -180,7 +180,7 @@ func (e *Email) AttachFile(args ...string) (a *Attachment, err error) { ...@@ -180,7 +180,7 @@ func (e *Email) AttachFile(args ...string) (a *Attachment, err error) {
180 // Parameters include an io.Reader, the desired filename for the attachment, and the Content-Type. 180 // Parameters include an io.Reader, the desired filename for the attachment, and the Content-Type.
181 func (e *Email) Attach(r io.Reader, filename string, args ...string) (a *Attachment, err error) { 181 func (e *Email) Attach(r io.Reader, filename string, args ...string) (a *Attachment, err error) {
182 if len(args) < 1 && len(args) > 2 { 182 if len(args) < 1 && len(args) > 2 {
183 err = errors.New("Must specify a file type and number of parameters can not exceed at least two") 183 err = errors.New("Must specify the file type and number of parameters can not exceed at least two")
184 return 184 return
185 } 185 }
186 c := args[0] //Content-Type 186 c := args[0] //Content-Type
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!