diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 20:49:47 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-20 20:49:47 -0400 |
| commit | 473bfaddb6acd44e208406a224d75b75fdf9ec97 (patch) | |
| tree | b968349bd1add33e3a60f46e6fbe7fe25c9e9c16 /email.go | |
| parent | 5b3f9269e7a4c709d5ced93c0f13492a3189c4f6 (diff) | |
| download | lulu-473bfaddb6acd44e208406a224d75b75fdf9ec97.zip | |
fix EmailAddress.String()
Diffstat (limited to 'email.go')
| -rw-r--r-- | email.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,10 @@ import ( type EmailAddress mail.Address +func (a EmailAddress) String() string { + return (*mail.Address)(&a).String() +} + func (a EmailAddress) MarshalText() ([]byte, error) { return []byte(a.Address), nil } |