Golang : Auto-generate reply email with text/template package
Problem :
You have customers that ask question via email that sometimes bordering repetitive questioning or simply refused to read the Frequently Asked Question section. What should you do?
Solution :
Instead of cracking your head to write reply email each time, why not create an email auto-generator? It can be done easily with the text/template
package. For this example, I will keep it simple. No artificial intelligence stuff yet( I'm working on it ) and auto email out the reply yet(shouldn't be hard to implement)
Here you go!
package main
import (
"fmt"
"log"
"os"
"text/template"
)
func main() {
// Define a email template.
const email = `
Hey {{.Name}},
{{if .Attended}}
Have you read FAQ section yet?{{else}}
It is a shame that you choose not to understand my first email reply!{{end}}
{{with .Gift}}Thank you for your equiry about {{.}} by the way.
{{end}}
Best wishes,
Gossie
`
// Prepare some data to insert into the template.
type Recipient struct {
Name, Gift string
Attended bool
}
var recipients = []Recipient{
{"Aunt Fonda", "dragon bone pottery set", true},
{"Scott", "ancient map to the castle in the sky", false},
{"Jessie", "", false},
}
// Create a new template and parse the letter into it.
t := template.Must(template.New("email").Parse(email))
// Execute the template for each recipient.
for _, r := range recipients {
err := t.Execute(os.Stdout, r)
fmt.Println("----------------")
if err != nil {
log.Println("executing template:", err)
}
}
}
Output :
Hey Aunt Fonda,
Have you read FAQ section yet?
Thank you for your equiry about dragon bone pottery set by the way.
Best wishes,
Gossie
Hey Scott,
It is a shame that you choose not to understand my first email reply!
Thank you for your equiry about ancient map to the castle in the sky by the way.
Best wishes,
Gossie
Hey Jessie,
It is a shame that you choose not to understand my first email reply!
Best wishes,
Gossie
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.1k Golang : Mapping Iban to Dunging alphabets
+13.1k Golang : Read XML elements data with xml.CharData example
+6.9k Golang : Dealing with postal or zip code example
+14.6k JavaScript/JQuery : Detect or intercept enter key pressed example
+6.8k Golang : Array mapping with Interface
+5.4k Golang : Error handling methods
+19.2k Golang : Set or Add HTTP Request Headers
+21.8k Golang : Repeat a character by multiple of x factor
+29.7k Golang : How to verify uploaded file is image or allowed file types
+5.2k PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
+21k Golang : Convert string slice to struct and access with reflect example
+12.9k Golang : Count number of runes in string