Skip to content

Commit

Permalink
Update models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Metabaron1 authored Dec 30, 2020
1 parent 6229982 commit 77e39e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,8 @@ def new_addr(self):
elif user.sender_format == SenderFormatEnum.A.value:
formatted_email = self.website_email.replace("@", "(a)").strip()
elif user.sender_format == SenderFormatEnum.FULL.value:
formatted_email = self.website_email.strip()
formatted_email = self.website_email.replace(".", "(dot)").strip()
# formatted_email = self.website_email.strip()

# Prefix name to formatted email if available
new_name = (
Expand Down

0 comments on commit 77e39e1

Please sign in to comment.