Skip to content

Commit 010e924

Browse files
committed
Use the actual author email address rather than the method to recover email addresses when sending email.
- Legacy-Id: 3170
1 parent 4b06d7e commit 010e924

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/submit/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ def update_authors(draft, submission):
179179
name_suffix=author.name_suffix or '',
180180
)
181181
person.save()
182-
if author.email:
182+
if author.email_address:
183183
EmailAddress.objects.create(
184-
address=author.email,
184+
address=author.email_address,
185185
priority=1,
186186
type='INET',
187187
person_or_org=person,

0 commit comments

Comments
 (0)