* dev: magic link login and email password disable * dev: user account deactivation * dev: change nginx conf routes * feat: changemod space * fix: space app dir fixes * dev: invalidate cache for instances when creating workspace * dev: update email templates for test email * dev: fix build errors * fix: auth fixes and improvement (#4452) * chore: change password api updated and missing password error code added * chore: auth helper updated * chore: disable send code input suggestion * chore: change password function updated * fix: application error on sign in page * chore: change password validation added and enhancement * dev: space base path in web * dev: admin user deactivated * dev: user and instance admin session endpoint * fix: last_workspace_id endpoint updated * fix: magic sign in and email password check added --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
69 lines
2.2 KiB
Python
69 lines
2.2 KiB
Python
from django.core.mail import EmailMultiAlternatives, get_connection
|
|
from django.core.management import BaseCommand, CommandError
|
|
from django.template.loader import render_to_string
|
|
from django.utils.html import strip_tags
|
|
|
|
# Module imports
|
|
from plane.license.utils.instance_value import get_email_configuration
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""Django command to pause execution until db is available"""
|
|
|
|
def add_arguments(self, parser):
|
|
# Positional argument
|
|
parser.add_argument("to_email", type=str, help="receiver's email")
|
|
|
|
def handle(self, *args, **options):
|
|
receiver_email = options.get("to_email")
|
|
|
|
if not receiver_email:
|
|
raise CommandError("Receiver email is required")
|
|
|
|
(
|
|
EMAIL_HOST,
|
|
EMAIL_HOST_USER,
|
|
EMAIL_HOST_PASSWORD,
|
|
EMAIL_PORT,
|
|
EMAIL_USE_TLS,
|
|
EMAIL_USE_SSL,
|
|
EMAIL_FROM,
|
|
) = get_email_configuration()
|
|
|
|
connection = get_connection(
|
|
host=EMAIL_HOST,
|
|
port=int(EMAIL_PORT),
|
|
username=EMAIL_HOST_USER,
|
|
password=EMAIL_HOST_PASSWORD,
|
|
use_tls=EMAIL_USE_TLS == "1",
|
|
use_ssl=EMAIL_USE_SSL == "1",
|
|
timeout=30,
|
|
)
|
|
# Prepare email details
|
|
subject = "Test email from Plane"
|
|
|
|
html_content = render_to_string("emails/test_email.html")
|
|
text_content = strip_tags(html_content)
|
|
|
|
self.stdout.write(self.style.SUCCESS("Trying to send test email..."))
|
|
|
|
# Send the email
|
|
try:
|
|
msg = EmailMultiAlternatives(
|
|
subject=subject,
|
|
body=text_content,
|
|
from_email=EMAIL_FROM,
|
|
to=[
|
|
receiver_email,
|
|
],
|
|
connection=connection,
|
|
)
|
|
msg.attach_alternative(html_content, "text/html")
|
|
msg.send()
|
|
self.stdout.write(self.style.SUCCESS("Email successfully sent"))
|
|
except Exception as e:
|
|
self.stdout.write(
|
|
self.style.ERROR(
|
|
f"Error: Email could not be delivered due to {e}"
|
|
)
|
|
)
|