gofmt, because that is a thing

pull/169/head
William Woodson 2016-02-27 08:37:02 -06:00
parent f1d1d6838b
commit 7ca63f55be
2 changed files with 9 additions and 9 deletions

View File

@ -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))