All checks were successful
Build and Push Docker Image / build (push) Successful in 4m14s
Reference numbers (unified scheme PREFIX-YYYYMM-HOSP-NNNN, e.g. CMP-202606-HHN-0001): - new ReferenceSequence model + generate_reference() helper (apps/core) - Complaint/Inquiry/Observation/Appreciation/Suggestion emit unified refs via save() - prefix-based auto-routing in public track API (CMP/INQ/OBS trackable; APR/SGT internal-only) - removed legacy CMP-/INQ- generators in ui_views, integrations, px_sources - migrations: core.0003_referencesequence, appreciation.0006, feedback.0008, observations.0012 - unit tests (format, sanitization, monthly reset, 40-thread concurrency) QA audit: - isolated E2E hospital sandbox mirroring HH-N + 10 role users (create_e2e_isolated_env) - feedback-modules-audit.spec.ts + audit helper (headed, run-to-completion) - reports/feedback-modules-qa-report.md Also bundles accumulated in-progress work across complaints, observations, organizations, templates, and other modules.
25 lines
871 B
Python
25 lines
871 B
Python
from django.core.management.base import BaseCommand, CommandError
|
|
from django.core.mail import send_mail
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = "Send a test email to verify SMTP configuration"
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument("to", help="Recipient email address")
|
|
|
|
def handle(self, *args, **options):
|
|
to = options["to"]
|
|
try:
|
|
send_mail(
|
|
subject="PX360 Test Email",
|
|
message="This is a test email from PX360. If you received this, your Outlook SMTP configuration is working correctly.",
|
|
from_email=None,
|
|
recipient_list=[to],
|
|
fail_silently=False,
|
|
)
|
|
except Exception as e:
|
|
raise CommandError(f"Failed to send email: {e}")
|
|
|
|
self.stdout.write(self.style.SUCCESS(f"Test email sent to {to}"))
|