diff --git a/docker/compose_test.yaml b/docker/compose_test.yaml index 764b93b..483edce 100644 --- a/docker/compose_test.yaml +++ b/docker/compose_test.yaml @@ -37,6 +37,11 @@ x-common-variables: &common-variables PUSH_GATEWAY_HOST: "pushgateway" PUSH_GATEWAY_PORT: "9091" COMPONENT_NAME: ${COMPONENT_NAME:-unknown} + SW_EMAIL_ACCESS_KEY: "SCWFMQ871RE4XGF04SW0" + SW_EMAIL_SECRET_KEY: "ec84604c-e2d4-4b0d-a120-40420693f42a" + SW_EMAIL_SENDER: "admin_test@mail.askeveai.be" + SW_EMAIL_NAME: "Evie Admin (test)" + SW_PROJECT: "f282f55a-ea52-4538-a979-5bcb890717ab" services: nginx: diff --git a/eveai_app/templates/email/activate.html b/eveai_app/templates/email/activate.html index cb326d8..815bba4 100644 --- a/eveai_app/templates/email/activate.html +++ b/eveai_app/templates/email/activate.html @@ -1,13 +1,20 @@ - - - - Confirm Your Email - - -

Hi,

-

You have been registered with EveAI by your administrator. Please confirm your email address by clicking the link below:

+{% extends "email/base.html" %} +{% block content %} +

Hello,

+ +

You've been granted access to Ask Eve AI's Evie by your administrator.

+ +
+

Click the below link to confirm your email:

Confirm Email

-

If you were not informed to register, please ignore this email.

-

Thanks,
The EveAI Team

- - \ No newline at end of file +
+ +
+ Important: After confirming your email, you'll receive an email to set your password. +
+ +
+ Important: Do not reply to this message. There's no one listening on the receiving side. +
+ +{% endblock %} diff --git a/eveai_app/templates/email/forgot_password.html b/eveai_app/templates/email/forgot_password.html index 7838c41..ac998e8 100644 --- a/eveai_app/templates/email/forgot_password.html +++ b/eveai_app/templates/email/forgot_password.html @@ -1,13 +1,21 @@ - - - - Reset Your Password - - -

Hi,

-

You requested a password reset for your EveAI account. Click the link below to reset your password:

+{% extends "email/base.html" %} +{% block content %} +

Hello,

+ +

You indicated you require a new password. Your administrator sent you this reset password mail.

+ +
+

Click the below link to reset your password:

Reset Password

-

If you did not request a password reset, please ignore this email.

-

Thanks,
The EveAI Team

- - \ No newline at end of file +
+ +
+ Important: If you didn't request a new password, please inform your administrator. +
+ +
+ Important: Do not reply to this message. There's no one listening on the receiving side. +
+ +{% endblock %} + diff --git a/eveai_app/templates/email/reset_password.html b/eveai_app/templates/email/reset_password.html index 7838c41..ac998e8 100644 --- a/eveai_app/templates/email/reset_password.html +++ b/eveai_app/templates/email/reset_password.html @@ -1,13 +1,21 @@ - - - - Reset Your Password - - -

Hi,

-

You requested a password reset for your EveAI account. Click the link below to reset your password:

+{% extends "email/base.html" %} +{% block content %} +

Hello,

+ +

You indicated you require a new password. Your administrator sent you this reset password mail.

+ +
+

Click the below link to reset your password:

Reset Password

-

If you did not request a password reset, please ignore this email.

-

Thanks,
The EveAI Team

- - \ No newline at end of file +
+ +
+ Important: If you didn't request a new password, please inform your administrator. +
+ +
+ Important: Do not reply to this message. There's no one listening on the receiving side. +
+ +{% endblock %} +