Easiest Way to Send Emails in Flask

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024

Комментарии • 17

  • @mychalculpepper2920
    @mychalculpepper2920 Месяц назад +1

    brother this is unbelievably clutch

  • @JaafarRayshouni
    @JaafarRayshouni Год назад

    You are amazing ! We need more flask apis full tutorial with a good files structure and using marshmallow schema to organize the code and to validate the requestes

  • @krzysiekkrzysiek9059
    @krzysiekkrzysiek9059 Год назад +2

    Just in time. Thx bro 💪

  • @giancarloforero7684
    @giancarloforero7684 8 месяцев назад

    Is it possible for it to only be sent to gmail?

  • @giancarloforero7684
    @giancarloforero7684 8 месяцев назад

    it worked, now what are some general things I have to do to make so that the user can input their own email/body/subject. Do i need to write an HTML page?

    • @manavshah7490
      @manavshah7490 7 месяцев назад

      you can make a console application or just make a flask app with a good html page

  • @chriskeo392
    @chriskeo392 3 месяца назад

    How abt flask-mail

  • @giancarloforero7684
    @giancarloforero7684 8 месяцев назад

    is this possible with gmail for free?

  • @dmbrv
    @dmbrv Год назад

    nice and easy. thanks

  • @vishalverma5280
    @vishalverma5280 11 месяцев назад

    Thankyou 🎉🎉🎉

  • @Kennethlumor
    @Kennethlumor 10 месяцев назад

    Sir thank you so much for this video, please I want to request for two things. I request you create another video that uses Gmail in place of fast mail. 2nd request is how to use this library to send a password reset link to a client. Please I beg you in the name of God.

    • @faseehnadeembutt7226
      @faseehnadeembutt7226 3 месяца назад

      Dude just create a button of forget password and create a page where user enters emails just like sending mail on signup, send email to user a href of page for resetting password and for that page use function to get row from table by email and reset password. It's difficult but it's the flow of this

  • @sinancetinkaya
    @sinancetinkaya Год назад

    Why is flask making their own version of everything? I'm using aiosmtplib, aioimaplib with FastAPI. Why is Flask not using the same approach?

    • @prettyprinted
      @prettyprinted  Год назад +1

      It's just the pattern of Flask to including all configuration on the Flask app. This forces Flask versions of various utilities. I don't mind the pattern, but I can se how it can be annoying.