Skip to content

Commit

Permalink
fix: Use bare email address for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pselkirk committed Jul 17, 2023
1 parent 9400df8 commit f9fa298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/nomcom/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def private_index(request, year):
nominations.update(state='pending')
messages.success(request,'The selected nominations have been set as pending')
elif action == 'email':
mailto = ','.join([np.nominee.email.name_and_email() for np in nominations])
mailto = ','.join([np.nominee.email.email_address() for np in nominations])
else:
messages.warning(request, "Please, select some nominations to work with")

Expand Down

0 comments on commit f9fa298

Please sign in to comment.