mirror of https://github.com/gophish/gophish
gofmt, because that is a thing
parent
f1d1d6838b
commit
7ca63f55be
|
@ -530,18 +530,18 @@ func API_Send_Test_Email(w http.ResponseWriter, r *http.Request) {
|
||||||
if s.Template.Name == "" {
|
if s.Template.Name == "" {
|
||||||
//default message body
|
//default message body
|
||||||
text := "It works!\n\nThis is an email letting you know that your gophish\nconfiguration was successful.\n" +
|
text := "It works!\n\nThis is an email letting you know that your gophish\nconfiguration was successful.\n" +
|
||||||
"Here are the details:\n\nWho you sent from: {{.From}}\n\nWho you sent to: \n" +
|
"Here are the details:\n\nWho you sent from: {{.From}}\n\nWho you sent to: \n" +
|
||||||
"{{if .FirstName}} First Name: {{.FirstName}}\n{{end}}" +
|
"{{if .FirstName}} First Name: {{.FirstName}}\n{{end}}" +
|
||||||
"{{if .LastName}} Last Name: {{.LastName}}\n{{end}}" +
|
"{{if .LastName}} Last Name: {{.LastName}}\n{{end}}" +
|
||||||
"{{if .Position}} Position: {{.Position}}\n{{end}}" +
|
"{{if .Position}} Position: {{.Position}}\n{{end}}" +
|
||||||
"{{if .TrackingURL}} Tracking URL: {{.TrackingURL}}\n{{end}}" +
|
"{{if .TrackingURL}} Tracking URL: {{.TrackingURL}}\n{{end}}" +
|
||||||
"\nNow go send some phish!"
|
"\nNow go send some phish!"
|
||||||
t := models.Template{
|
t := models.Template{
|
||||||
Subject: "Default Email from Gophish",
|
Subject: "Default Email from Gophish",
|
||||||
Text: text,
|
Text: text,
|
||||||
}
|
}
|
||||||
s.Template = t
|
s.Template = t
|
||||||
// Try to lookup the Template by name
|
// Try to lookup the Template by name
|
||||||
} else {
|
} else {
|
||||||
// Get the Template requested by name
|
// Get the Template requested by name
|
||||||
s.Template, err = models.GetTemplateByName(s.Template.Name, ctx.Get(r, "user_id").(int64))
|
s.Template, err = models.GetTemplateByName(s.Template.Name, ctx.Get(r, "user_id").(int64))
|
||||||
|
|
|
@ -17,7 +17,7 @@ type Template struct {
|
||||||
HTML string `json:"html" gorm:"column:html"`
|
HTML string `json:"html" gorm:"column:html"`
|
||||||
ModifiedDate time.Time `json:"modified_date"`
|
ModifiedDate time.Time `json:"modified_date"`
|
||||||
Attachments []Attachment `json:"attachments"`
|
Attachments []Attachment `json:"attachments"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ErrTemplateNameNotSpecified is thrown when a template name is not specified
|
// ErrTemplateNameNotSpecified is thrown when a template name is not specified
|
||||||
var ErrTemplateNameNotSpecified = errors.New("Template name not specified")
|
var ErrTemplateNameNotSpecified = errors.New("Template name not specified")
|
||||||
|
|
Loading…
Reference in New Issue