Author Picture

Kim Majali


Django MailGun Integration

Author Avatar wrote on 01/06/2022

Go to www.mailgun.com
  • create a free account.
  • Add New Domain
  • Verify domain
Configuring Django to Send Emails EMAIL_HOST = 'smtp.eu.mailgun.org' EMAIL_PORT = 587 EMAIL_HOST_USER = 'YOUR_EMAIL_HOST_USER' EMAIL_HOST_PASSWORD = 'yourPassword' DEFAULT_FROM_EMAIL = 'yourEmail' EMAIL_USE_TLS = True Read more

DjangoPayPal (3) – Server Side

Author Avatar wrote on 01/06/2022

WAY 3 PayPal Server Side

+ Migrate is not needed - no changes to DB - You need a client key not just the email - Package must be installed - PayPal app should be created in PayPal Read more

Djanjo PayPal (2) – Standard IPN

Author Avatar wrote on 01/06/2022

WAY 2 PayPal Standard IPN

+ No PayPal app should be created in PayPal + You change PayPal email only - Package must be installed - migrate is needed - changes to DB Read more

Django PayPal (1) – Checkout

Author Avatar wrote on 01/06/2022

WAY 1 PayPal Checkout

+ No package must be installed + No migrate needed - no changes to DB - PayPal app should be created in PayPal - You need a client key not just the email Read more

Topics: Integrations

CRUDgen Django CRUD generator