v0.0.634 add ReplyTo to googleapi.SendMail
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m37s

This commit is contained in:
2026-04-24 13:38:00 +02:00
parent f62e7499ec
commit 80cea13437
8 changed files with 23 additions and 8 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import (
)
type GoogleClient interface {
SendMail(ctx context.Context, from string, recipients []string, cc []string, bcc []string, subject string, body MailBody, attachments []MailAttachment) (MailRef, error)
SendMail(ctx context.Context, from string, recipients []string, cc []string, bcc []string, replyTo []string, subject string, body MailBody, attachments []MailAttachment) (MailRef, error)
}
type client struct {