dfrojas
dfrojas

Reputation: 723

send email core django VS Sendgrid

Maybe this is a silly question, but basically what is the difference between use the core email library in django vs Sendgrid? and in advance way what is the difference too?

Upvotes: 2

Views: 206

Answers (1)

Domen Blenkuš
Domen Blenkuš

Reputation: 2242

Sendgrid is SMTP provider (i.e. like gmail) and Django's library is used to connect to SMTP provider. So you need both to actually send email.

Upvotes: 4

Related Questions