42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 beego Author. All Rights Reserved.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //      http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| package utils
 | |
| 
 | |
| import "testing"
 | |
| 
 | |
| func TestMail(t *testing.T) {
 | |
| 	config := `{"username":"astaxie@gmail.com","password":"astaxie","host":"smtp.gmail.com","port":587}`
 | |
| 	mail := NewEMail(config)
 | |
| 	if mail.Username != "astaxie@gmail.com" {
 | |
| 		t.Fatal("email parse get username error")
 | |
| 	}
 | |
| 	if mail.Password != "astaxie" {
 | |
| 		t.Fatal("email parse get password error")
 | |
| 	}
 | |
| 	if mail.Host != "smtp.gmail.com" {
 | |
| 		t.Fatal("email parse get host error")
 | |
| 	}
 | |
| 	if mail.Port != 587 {
 | |
| 		t.Fatal("email parse get port error")
 | |
| 	}
 | |
| 	mail.To = []string{"xiemengjun@gmail.com"}
 | |
| 	mail.From = "astaxie@gmail.com"
 | |
| 	mail.Subject = "hi, just from beego!"
 | |
| 	mail.Text = "Text Body is, of course, supported!"
 | |
| 	mail.HTML = "<h1>Fancy Html is supported, too!</h1>"
 | |
| 	mail.AttachFile("/Users/astaxie/github/beego/beego.go")
 | |
| 	mail.Send()
 | |
| }
 |