Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions add-ons/helpdesk_lite/models/helpdesk_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def create(self, vals):
values = dict(
body_html=body_html,
email_to=res.company_id.administration_email,
email_from="noreply@grh-hrm.iitb-dgiit.ca",
email_from="EDSC Liste blanche RH - ESDC HR Whitelist <esdc-esdc@3joed16.m.notification.alpha.canada.ca>",
subject="New ticket #" + str(res.id) + " for HR WhiteListing | Nouveau billet #" + str(res.id) + " pour RH WhiteListing"
)

Expand All @@ -214,7 +214,7 @@ def create(self, vals):
values = dict(
body_html=body_html,
email_to=res.email_from,
email_from="noreply@grh-hrm.iitb-dgiit.ca",
email_from="EDSC Liste blanche RH - ESDC HR Whitelist <esdc-esdc@3joed16.m.notification.alpha.canada.ca>",
subject="Ticket #" + str(res.id) + " for HR WhiteListing | Billet #" + str(res.id) + " pour RH WhiteListing"
)

Expand Down Expand Up @@ -299,7 +299,7 @@ def send_reply_manager(self):
values = dict(
body_html=body_html,
email_to=self.email_from,
email_from="noreply@grh-hrm.iitb-dgiit.ca",
email_from="EDSC Liste blanche RH - ESDC HR Whitelist <esdc-esdc@3joed16.m.notification.alpha.canada.ca>",
subject="Reply to HR WhiteListing Ticket #" + str(self.ticket_id.id) + " | Réponse au billet #" + str(self.ticket_id.id) + " de RH WhiteListing"
)

Expand Down Expand Up @@ -333,7 +333,7 @@ def send_reply_user(self):
values = dict(
body_html=body_html,
email_to=self.user_id.email,
email_from="noreply@grh-hrm.iitb-dgiit.ca",
email_from="EDSC Liste blanche RH - ESDC HR Whitelist <esdc-esdc@3joed16.m.notification.alpha.canada.ca>",
subject="Reply to HR WhiteListing Ticket #" + str(self.ticket_id.id) + " | Réponse au billet #" + str(self.ticket_id.id) + " de RH WhiteListing"
)

Expand Down