Emails not working
 
Notifications
Clear all

Emails not working

2 Posts
1 Users
1 Reactions
42 Views
0
Topic starter

Email host error

admin_info = User.objects.filter(is_superuser=True)
admin_emails = []
for i in admin_info:
            admin_emails.append(i.email)
send_mail(
                'New Car Inquiry',
                'You have a new inquiry for the car ' + car_title + '. Please login to your admin panel for more info.',
                'rathan.kumar049@gmail.com',
                admin_emails,
                fail_silently=False,
            )
admin Topic starter 18/08/2024 7:57 pm

Fixed by adding the correct password

Topic Tags
1 Answer
1
Topic starter

Fixed

Share: