Sending programs results as email with complex data

I print data using this code :

for _, reisai := range reisai1 {
fmt.Println(reisai)
}
and I get results as :

reisai is map.

My question is how I can send this results to email? I looked at stmp - google way where you add you gmail username + password to the code and it’s not the option is there any other ways to do it?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.