jhillyerd / enmime

MIME mail encoding and decoding package for Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Field accessors for MailBuilder

andylibrian opened this issue · comments

Hi, thanks for the project. It's really helpful.

What I want to do:

I want to access MailBuilder fields from other functions. Apparently the fields are private and there is no accessor available.

func SendEmail(mail *enmime.MailBuilder) error {
        bcc := mail.GetBcc()
}

What I expected:

I would like to access the fields before / without building the MIME part.

What I got:

No function

Release or branch I am using:

master

Note

If you agree to support this, I'm interested to submit a PR to implement it

Sure, I'd accept a PR to add getter funcs.