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
+11k Use systeminfo to find out installed Windows Hotfix(s) or updates
+7.5k Golang : Generate human readable password
+36.2k Golang : Display float in 2 decimal points and rounding up or down
+77.6k Golang : How to return HTTP status code?
+9.1k Golang : Scramble and unscramble text message by randomly replacing words
+6.7k Golang : Find the shortest line of text example
+6.2k Grep : How to grep for strings inside binary data
+7.8k Golang : Multiplexer with net/http and map
+17.3k Convert JSON to CSV in Golang
+10.6k Nginx : TLS 1.2 support
+18.1k Golang : Get download file size
+15.8k Golang : Loop each day of the current month example