Skip to content
Snippets Groups Projects
Commit 7bc3e64a authored by Richard Glosner's avatar Richard Glosner
Browse files

Merge branch '241-extend-loggin-of-mails' into 'main'

Resolve "Extend logging of mails"

Closes #241

See merge request inject/backend!236
parents dfc0273f d247a71d
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Boolean type variables use consider `true` and `yes` as truthy, and `false` and `no` as falsy. Boolean type variables use consider `true` and `yes` as truthy, and `false` and `no` as falsy.
- `INJECT_DEBUG`: _boolean, default=false_ - Run the backend in debug mode. If set, email sending is disabled. **Do not set in production.** - `INJECT_DEBUG`: _boolean, default=false_ - Run the backend in debug mode. If set, email sending is disabled and emails are printed in the console. **Do not set in production.**
- `INJECT_HOST_ADDRESSES`: _string, default=localhost_ - A comma-separated list of allowed hosts. - `INJECT_HOST_ADDRESSES`: _string, default=localhost_ - A comma-separated list of allowed hosts.
- `INJECT_CORS_ALLOWED_ORIGINS`: _string, default=http://localhost_ - A comma-separated list of origins (domains) that are authorized to make cross-site HTTP requests. - `INJECT_CORS_ALLOWED_ORIGINS`: _string, default=http://localhost_ - A comma-separated list of origins (domains) that are authorized to make cross-site HTTP requests.
- `INJECT_EMAIL_HOST`: _string, default=""_ - SMTP server address. - `INJECT_EMAIL_HOST`: _string, default=""_ - SMTP server address.
......
...@@ -235,7 +235,11 @@ SESSION_EXPIRE_AT_BROWSER_CLOSE = True ...@@ -235,7 +235,11 @@ SESSION_EXPIRE_AT_BROWSER_CLOSE = True
AUTHENTICATION_BACKENDS = ["aai.backend.CustomAuthBackend"] AUTHENTICATION_BACKENDS = ["aai.backend.CustomAuthBackend"]
# Email client # Email client
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" EMAIL_BACKEND = (
"django.core.mail.backends.console.EmailBackend"
if DEBUG
else "django.core.mail.backends.smtp.EmailBackend"
)
EMAIL_HOST = os.environ.get("INJECT_EMAIL_HOST", "") EMAIL_HOST = os.environ.get("INJECT_EMAIL_HOST", "")
if email_port := os.environ.get("INJECT_EMAIL_PORT"): if email_port := os.environ.get("INJECT_EMAIL_PORT"):
EMAIL_PORT = int(email_port) EMAIL_PORT = int(email_port)
......
...@@ -7,7 +7,7 @@ from email.mime.image import MIMEImage ...@@ -7,7 +7,7 @@ from email.mime.image import MIMEImage
from common_lib.logger import logger from common_lib.logger import logger
from user.models import User from user.models import User
from ttxbackend.settings import EMAIL_SENDER_ADDRESS, DOMAIN from ttxbackend.settings import EMAIL_SENDER_ADDRESS, DOMAIN, DEBUG
def send_credentials(new_users: List[Tuple[User, str]]): def send_credentials(new_users: List[Tuple[User, str]]):
...@@ -27,26 +27,33 @@ def send_credentials(new_users: List[Tuple[User, str]]): ...@@ -27,26 +27,33 @@ def send_credentials(new_users: List[Tuple[User, str]]):
message = EmailMultiAlternatives( message = EmailMultiAlternatives(
subject, text_content, EMAIL_SENDER_ADDRESS, [user.username] subject, text_content, EMAIL_SENDER_ADDRESS, [user.username]
) )
# attach logo if not DEBUG:
fp = open("user/templates/inject-logo.png", "rb") # attach logo
msg_image = MIMEImage(fp.read()) fp = open("user/templates/inject-logo.png", "rb")
fp.close() msg_image = MIMEImage(fp.read())
msg_image.add_header("Content-ID", "<logo-image>") fp.close()
msg_image.add_header( msg_image.add_header("Content-ID", "<logo-image>")
"Content-Disposition", "attachment; filename=inject-logo.png" msg_image.add_header(
) "Content-Disposition", "attachment; filename=inject-logo.png"
message.mixed_subtype = "related" )
message.attach(msg_image) message.mixed_subtype = "related"
message.attach(msg_image)
# attach HTML content # attach HTML content
message.attach_alternative(html_content, "text/html") message.attach_alternative(html_content, "text/html")
messages.append(message) messages.append(message)
try: try:
connection = get_connection(fail_silently=False) connection = get_connection(fail_silently=False)
connection.send_messages(messages) num_sent = connection.send_messages(messages)
logger.info(
f"{num_sent} emails with credentials were "
+ ("printed to console" if DEBUG else "sent via SMTP server")
)
except Exception as e: except Exception as e:
logger.error(f"Failed to send credentials via SMTP server: {e}") logger.error(
f"Failed to send emails with credentials via SMTP server: {e}"
)
def send_password_change_notification(user: User): def send_password_change_notification(user: User):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment