sabuhish / fastapi-mail

Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk)
https://sabuhish.github.io/fastapi-mail/
MIT License
681 stars 82 forks source link

Which protocol uses fastapi-mail? #62

Closed artemd24 closed 3 years ago

artemd24 commented 3 years ago

Hello to all members! I have a question, it's a bit not clear for me. Which protocol uses fastapi-mail for sending messages to SMTP server? Is it SMTP or HTTPS or smt else?

await fm.send_message(message)
Turall commented 3 years ago

Hi @ArtemDavletov , fastapi-mail sends messages over an SMTP protocol.

artemd24 commented 3 years ago

Thank you!