| 123456789101112131415161718192021222324252627 | package emailimport (	"fmt")// UserInvitedMail - mail for users that are invited to a tenanttype UserInvitedMail struct {	BodyBuilder EmailBodyBuilder	InviteURL   string}// GetSubject - gets the subject of the emailfunc (UserInvitedMail) GetSubject(info Notification) string {	return "Netmaker: Pending Invitation"}// GetBody - gets the body of the emailfunc (invite UserInvitedMail) GetBody(info Notification) string {	return invite.BodyBuilder.		WithHeadline("Join Netmaker from this invite!").		WithParagraph("Hello from Netmaker,").		WithParagraph("You have been invited to join Netmaker.").		WithParagraph(fmt.Sprintf("Join Using This Invite Link <a href=\"%s\">Netmaker</a>", invite.InviteURL)).		Build()}
 |