Browse Source

add mailbox email into notif email

Son NK 5 years ago
parent
commit
4b21f49f49

+ 3 - 3
templates/emails/transactional/automatic-disable-alias.html

@@ -2,14 +2,14 @@
 
 
 {% block content %}
 {% block content %}
   {{ render_text("Hi " + name) }}
   {{ render_text("Hi " + name) }}
-  {{ render_text("There are at least 2 emails sent to your alias <b>" + alias + "</b> from <b>" + website_email +
-  "</b> that have been <b>refused</b> (or bounced) by your email provider.") }}
+  {{ render_text("There are at least 2 emails sent to your alias <b>" + alias + "</b>" +  " (mailbox "+ mailbox_email +  ") from <b>" + website_email + "</b> that have been <b>refused</b> (or bounced) by your email provider.") }}
+
 
 
   {{ render_text("This is usually due to the email being considered as <b>spam</b> by your email provider.") }}
   {{ render_text("This is usually due to the email being considered as <b>spam</b> by your email provider.") }}
 
 
   {{ render_button("View the refused email", refused_email_url) }}
   {{ render_button("View the refused email", refused_email_url) }}
 
 
-  {{ render_text('As security measure, we have <b>disabled</b> the alias ' + alias) }}
+  {{ render_text('As security measure, we have <b>disabled</b> the alias ' + alias + ".") }}
 
 
   {{ render_text('Please let us know if you have any question.') }}
   {{ render_text('Please let us know if you have any question.') }}
 
 

+ 1 - 1
templates/emails/transactional/automatic-disable-alias.txt

@@ -1,6 +1,6 @@
 Hi {{name}}
 Hi {{name}}
 
 
-There are at least 2 emails sent to your alias {{alias}} from {{website_from}} that have been refused (or bounced) by your email provider.
+There are at least 2 emails sent to your alias {{alias}} (mailbox {{mailbox_email}}) from {{website_from}} that have been refused (or bounced) by your email provider.
 
 
 This is usually due to the email being considered as spam by your email provider.
 This is usually due to the email being considered as spam by your email provider.
 You can view this email here:
 You can view this email here:

+ 1 - 1
templates/emails/transactional/bounced-email.html

@@ -2,7 +2,7 @@
 
 
 {% block content %}
 {% block content %}
   {{ render_text("Hi " + name) }}
   {{ render_text("Hi " + name) }}
-  {{ render_text("An email sent to your alias <b>" + alias + "</b> from <b>" + website_email + "</b> was <b>refused</b> (or <em>bounced</em>) by your email provider.") }}
+  {{ render_text("An email sent to your alias <b>" + alias + "</b>" +  " (mailbox "+ mailbox_email +  ") from <b>" + website_email + "</b> was <b>refused</b> (or bounced) by your email provider.") }}
 
 
   {{ render_text('This is usually due to the email being considered as <b>spam</b> by your email provider.') }}
   {{ render_text('This is usually due to the email being considered as <b>spam</b> by your email provider.') }}
 
 

+ 1 - 1
templates/emails/transactional/bounced-email.txt

@@ -1,6 +1,6 @@
 Hi {{name}}
 Hi {{name}}
 
 
-An email sent to your alias {{alias}} from {{website_from}} was refused (or bounced) by your email provider.
+An email sent to your alias {{alias}} (mailbox {{mailbox_email}}) from {{website_from}} was refused (or bounced) by your email provider.
 
 
 This is usually due to the email being considered as spam by your email provider.
 This is usually due to the email being considered as spam by your email provider.
 You can view this email here:
 You can view this email here: