Below is my code that I am trying to send with an attachment.
msg := &mail.Message{
Sender: "kasireddy002@gmail.com",
To: []string{addr},
Attachments : []Attachment{
Name :"file name",
Data :[]byte,
ContentID :"fileid",
},
Subject: "Welcome to Simplyst Health: Verify your account",
if err := mail.Send(context, msg); err != nil {
log.Errorf(ctx, "Alas, my user, the email failed to sendeth: err)
}
When I am trying to save my code it is throwing an error.
ERROR:
cannot use []Attachment literal (type []Attachment) as type []"google.golang.org/appengine/mail".Attachment in field value