[Answered ]-How to send "order is confirmed emails to customer" in django

1👍

You don’t need a service like Mailchimp for this. You need to write your own code for sending emails.

To send emails in Django you need to configure a mail server. You can use your own mail server or use providers like AWS SES (Simple Email Service) or SendGrid.

Then you need to write the code that will send two emails after the purchase. Ideally, it should be done in the webhook that will wait for payment confirmation from your payment provider (for example Stripe).

BTW, I’m working on Django+React tutorials at SaaSitive and just committed example code how to send activation emails (after registration) https://github.com/saasitive/django-react-boilerplate

Leave a comment