added mailer.Message.InlineAttachments field

This commit is contained in:
Gani Georgiev
2024-12-13 20:27:04 +02:00
parent 2b2dafaf88
commit 239daf2023
5 changed files with 4822 additions and 4813 deletions

View File

@@ -114,11 +114,16 @@ func (c *SMTPClient) send(m *Message) error {
yak.Cc(addressesToStrings(m.Cc, true)...)
}
// add attachements (if any)
// add regular attachements (if any)
for name, data := range m.Attachments {
yak.Attach(name, data)
}
// add inline attachments (if any)
for name, data := range m.InlineAttachments {
yak.AttachInline(name, data)
}
// add custom headers (if any)
var hasMessageId bool
for k, v := range m.Headers {