I want to send a image in email body using go lang.
Used this package from github
https://github.com/scorredoira/email
err := m.Attach("image.png")
if err1 != nil {
fmt.Println(err1)
}
Now i am able to send image file as attachment but my need is to send a image file in email body.
Thanks in advance.
You can use Gomail (I'm the author). Have a look at the Embed method which allow you to embed images in the email body:
package main
import "gopkg.in/gomail.v2"
func main() {
m := gomail.NewMessage()
m.SetHeader("From", "[email protected]")
m.SetHeader("To", "[email protected]")
m.SetHeader("Subject", "Hello!")
m.Embed("image.png")
m.SetBody("text/html", `<img src="cid:image.png" alt="My image" />`)
d := gomail.NewPlainDialer("smtp.example.com", 587, "user", "123456")
if err := d.DialAndSend(m); err != nil {
panic(err)
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With