Skip to content

Commit

Permalink
Merge pull request #1589 from cisagov/nmb/1572-submission-date-emails
Browse files Browse the repository at this point in the history
Use submission_date in application emails
  • Loading branch information
neilmb authored Jan 5, 2024
2 parents 653a958 + 37189a5 commit f8d2898
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hi {{ application.submitter.first_name }}.
We've identified an action needed to complete the review of your .gov domain request.

DOMAIN REQUESTED: {{ application.requested_domain.name }}
REQUEST RECEIVED ON: {{ application.updated_at|date }}
REQUEST RECEIVED ON: {{ application.submission_date|date }}
REQUEST #: {{ application.id }}
STATUS: Action needed

Expand Down
2 changes: 1 addition & 1 deletion src/registrar/templates/emails/status_change_approved.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hi {{ application.submitter.first_name }}.
Congratulations! Your .gov domain request has been approved.

DOMAIN REQUESTED: {{ application.requested_domain.name }}
REQUEST RECEIVED ON: {{ application.updated_at|date }}
REQUEST RECEIVED ON: {{ application.submission_date|date }}
REQUEST #: {{ application.id }}
STATUS: In review

Expand Down
2 changes: 1 addition & 1 deletion src/registrar/templates/emails/status_change_in_review.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hi {{ application.submitter.first_name }}.
Your .gov domain request is being reviewed.

DOMAIN REQUESTED: {{ application.requested_domain.name }}
REQUEST RECEIVED ON: {{ application.updated_at|date }}
REQUEST RECEIVED ON: {{ application.submission_date|date }}
REQUEST #: {{ application.id }}
STATUS: In review

Expand Down
4 changes: 2 additions & 2 deletions src/registrar/templates/emails/status_change_rejected.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hi {{ application.submitter.first_name }}.
Your .gov domain request has been rejected.

DOMAIN REQUESTED: {{ application.requested_domain.name }}
REQUEST RECEIVED ON: {{ application.updated_at|date }}
REQUEST RECEIVED ON: {{ application.submission_date|date }}
REQUEST #: {{ application.id }}
STATUS: Rejected

Expand All @@ -29,4 +29,4 @@ requesting a .gov domain.
The .gov team
Contact us: <https://get.gov/contact/>
Visit <https://get.gov>
{% endautoescape %}
{% endautoescape %}
2 changes: 1 addition & 1 deletion src/registrar/templates/emails/submission_confirmation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hi {{ application.submitter.first_name }}.
We received your .gov domain request.

DOMAIN REQUESTED: {{ application.requested_domain.name }}
REQUEST RECEIVED ON: {{ application.updated_at|date }}
REQUEST RECEIVED ON: {{ application.submission_date|date }}
REQUEST #: {{ application.id }}
STATUS: Received

Expand Down

0 comments on commit f8d2898

Please sign in to comment.