Fix broken image placeholder URL in welcome email
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 24s

This commit is contained in:
vickytechkey 2026-08-23 11:33:48 +05:30
parent 51d2661cee
commit b8fb0a368a

View file

@ -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'
}