From b8fb0a368a0b7532c926a37b8634c806ac3c2a82 Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Sun, 23 Aug 2026 11:33:48 +0530 Subject: [PATCH] Fix broken image placeholder URL in welcome email --- mailer/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailer/views.py b/mailer/views.py index f115245..a4babf6 100644 --- a/mailer/views.py +++ b/mailer/views.py @@ -33,7 +33,7 @@ def send_test_email(request): subject = "Password Reset Request" elif template_name == 'welcome_email': context = { - 'image_url': 'https://via.placeholder.com/600x200', + 'image_url': 'https://picsum.photos/600/200', 'message_text': 'This is a test promotional message just for you!', 'shop_link': 'https://tradhox.com/shop' }