How to Send Emails Using Python - Plain Text, Adding Attachments, HTML Emails, and More

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ย. 2024

ความคิดเห็น • 722

  • @aqurds
    @aqurds 5 ปีที่แล้ว +374

    If you get hundreds of test email in your inbox, don't get disturbed! Be happy to know that hundreds of people implemented what they learned here... :) As always, Corey, you are one of the best in teaching python. Thanks for this contribution.

    • @cicerosilva-ye8mn
      @cicerosilva-ye8mn 5 ปีที่แล้ว

      hey man Where am I wrong ?? my code = = = import os
      import smtplib
      from email.message import EmailMessage
      EMAIL_ADDRESS = os.environ.get('EMAIL_USER')
      EMAIL_PASSWORD = os.environ.get('EMAIL_PASS')
      msg = EmailMessage()
      msg['subject'] = 'teste de email'
      msg['from'] = 'anymail@gmail.com'
      msg['to'] = 'anymail@gmail.com'
      msg.set_content('teste de emial enviado pelo script em python')
      with smtplib.SMTP_SSL('smtp.gmail.com', 465) as smtp:
      smtp.login(EMAIL_ADDRESS,EMAIL_PASSWORD)
      smtp.send_message(msg)

    • @motherfuqjohnson5460
      @motherfuqjohnson5460 5 ปีที่แล้ว +2

      @@cicerosilva-ye8mn what error? and what line is the error on?

    • @cicerosilva-ye8mn
      @cicerosilva-ye8mn 5 ปีที่แล้ว +2

      @@motherfuqjohnson5460 in the sccrip ModuleNotFoundError: No module named 'email.message'; 'email' is not a package

    • @cicerosilva-ye8mn
      @cicerosilva-ye8mn 5 ปีที่แล้ว +2

      at this from email.message import EmailMessage

    • @motherfuqjohnson5460
      @motherfuqjohnson5460 5 ปีที่แล้ว +2

      @@cicerosilva-ye8mn what IDE are you using? im using pycharm and i had to go into the interpreter settings to add the module. search up "how to add module to pycharm"

  • @carlwcampbell
    @carlwcampbell 5 ปีที่แล้ว +92

    Thank you, for putting out a video of something so useful that many Pythonistas ask.

    • @av4787
      @av4787 4 ปีที่แล้ว +1

      Pythonistas

  • @sageedwards7866
    @sageedwards7866 4 ปีที่แล้ว +4

    For anyone that had trouble, I changed my port number from 587 to 25 and it fixed the 'gaierror' for me. Also huge thanks to you Corey!! Awesome, streamlined content.

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      check out here:
      al-taie.github.io/quick-mailer

  • @johnweller5491
    @johnweller5491 4 ปีที่แล้ว +2

    Your videos are my lifeline!! I am a retired programmer trying to learn Python. I've not used any other language apart from FoxPro since using Pascal 30 years ago.

  • @scifregizmoguy
    @scifregizmoguy 5 ปีที่แล้ว +50

    *Question on HTML email:* *[SOVED]*
    Is there a way to send a HTML email without having to write it manually in triple quote, but more automated?
    Like if I had a file called "email.html", and I didn't want to send it as an attachment, but the email itself.
    Thanks, anyone.
    EDIT: I found a solution! If anyone is interested here it is;
    ###
    with open('my_HTML_file.html', 'rb') as f:
    file_data = f.read()
    file_type = imghdr.what(f.name)
    file_name = f.name
    #print(file_data)
    file_string = file_data.decode(encoding='UTF-8')
    #print("

    ::: The file decoded into a string :::

    ", file_string)
    msg.add_alternative(file_string, subtype='html')
    ###

    • @diplomat1837
      @diplomat1837 4 ปีที่แล้ว

      Where does this code comes in the code. I’ve been having alternative error when I tried sending the HTML link on the code. Please some help to get me through

    • @ajith_e
      @ajith_e 3 ปีที่แล้ว +1

      Hey, Thanks man !! I was just searching for the same. I have an external html file read into the script. That was semantic

  • @swarnveersingh5113
    @swarnveersingh5113 4 ปีที่แล้ว +4

    This is excellent tutorial, but you can please tell what should be used for maintype and subtype for other kinds of attachment such as csv, excel etc. And how this process stated in video is different from MIME which is present all over internet for sending attachment ? I am quite confused regarding MIME

  • @Kiranhuded23
    @Kiranhuded23 3 ปีที่แล้ว +1

    All your videos are "GOLD MINE" on the internet. I've learnt better with your videos than most others i've tried, I feel i owe you a lot , I'm making patreon contribution now!! Thanks a lott !!! god bless you Corey!!

    • @asega27
      @asega27 3 ปีที่แล้ว

      If this worked for you can you help me I hate to bother you

  • @i5artube
    @i5artube 5 ปีที่แล้ว +13

    I can watch your videos on a tablet without getting blind... I'm going to thumbs up all your videos!

  • @silverzero9524
    @silverzero9524 5 ปีที่แล้ว +116

    Corey can you do videos about problem solving?
    Data structures and algorithms and when to use them
    Didn't watch the video yet but I know it would be good xD

    • @elokachima7893
      @elokachima7893 5 ปีที่แล้ว +6

      I agree with this post. Data structures and algorithms would be a very good fundamental for a developer(beginner or intermediate).

    • @bazareta6936
      @bazareta6936 5 ปีที่แล้ว +3

      Time complexity problems

    • @opst1704
      @opst1704 5 ปีที่แล้ว +1

      Yes! You are great teacher, we would love to see your DSA lessons!

  • @mijimelon
    @mijimelon 3 ปีที่แล้ว +4

    thank you. you explained everything perfectly line by line and argument by argument

  • @treaper
    @treaper 5 ปีที่แล้ว +1

    Oh man this video probably saved me hours of unnecessary struggle. If you could somehow get a link to this video as one of the top answers to google queries like "Python send email with attachment pdf" I bet you would get some extra traffic!
    Thank you so much for your work! I know that my learning process will be much smoother when I find one of your videos on the topic I want to learn. Youda best

  • @a_maxed_out_handle_of_30_chars
    @a_maxed_out_handle_of_30_chars 3 ปีที่แล้ว +2

    your channel is a gem mine :)

  • @officesuperhero9611
    @officesuperhero9611 5 ปีที่แล้ว +8

    As always, another great video chuck full of practical tips. I have never seen a video that you made that I felt was useless or poorly made. Your videos are always top notch and the best.

  • @ScottMorgan88
    @ScottMorgan88 3 ปีที่แล้ว

    Thanks, Corey. That worked great. Note that now you need to set up a App Password if you're using a Google account. This is to get around the 2-step verification process.

  • @aakashjana6225
    @aakashjana6225 4 ปีที่แล้ว +6

    I implemented it my flask back-end for sending automated mails to those who subscribe 😎. Thanks a lot Corey for this fantastic video.

    • @venkataramanansundaresan321
      @venkataramanansundaresan321 3 ปีที่แล้ว +1

      can you send the code for it i am also trying to do the same but dont know how to do

    • @aakashjana6225
      @aakashjana6225 3 ปีที่แล้ว

      @@venkataramanansundaresan321 yes but where? Where exactly are stuck? You gotta create a mailing function where you pass in the mail address and it sends a mail everytime someone hits subscribe button on the website with their mail ID filled in from the input box

  • @user-ns8ur8yh8r
    @user-ns8ur8yh8r 4 ปีที่แล้ว +1

    you are genius..........thank a lot of about what you doing with your lightfully teaching..... you are one of the best teacher in this world...god bless you and your family too....................you are a light for our brains

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      check out here:
      al-taie.github.io/quick-mailer

  • @anglerfish61
    @anglerfish61 3 ปีที่แล้ว

    What I like about this is, eventhough the code is solid it didnt work untill I understood what I was doing. Thanks for that. That is a valuable lesson

  • @oliverludwig6148
    @oliverludwig6148 3 ปีที่แล้ว +1

    Doesn't work. I either get SMTPResponseException: (334, b'UGFzc3dvcmQ6'), or SMTPAuthenticationError: (535, b'Authentication credentials invalid'). Checked everything multiple times, and tried different variations.

  • @a.wessel8865
    @a.wessel8865 2 ปีที่แล้ว +5

    Great video, Corey! I am a total newbie to Python, and you made this so easy to follow. Could you possibly create a video or point me towards a resource where a Python script is used to send an HTML email with variable data from a SQL query? For example, if I wanted to email a simple summary report with the sum of deposit balances, deposit counts, loan balances, and loan counts with HTML formatting, could this be done with a Python script?

  • @aniketbhosale7418
    @aniketbhosale7418 4 ปีที่แล้ว

    The Tutorial was very useful , it taught lot of stuff ,great work👍🏻
    If anyone is getting Error for Environment Variable then just try by installing:-
    pip3 install python-dotenv
    then create '.env' file as it is mention your variable in that eg:- EMAIL_USER=abc@gmail.com EMAIL_PASS=abc@123 and
    python
    path lib
    USER=os.getenv('EMAIL_USER')
    PASS=os.getenv('EMAIL_PASS')
    just like that it's Done check by using print(USER,"",PASS).🤘🏻

  • @shubhamhire9390
    @shubhamhire9390 ปีที่แล้ว +1

    This was such an amazing video, it took me a lot of time to pause and then understand and then apply it to the code, but it just made me learn so much , you are such an amazing teacher sir, thanks for sharing your knowledge with us.🙏🙏🙏

  • @jodi8076
    @jodi8076 ปีที่แล้ว +1

    This tutorial was so simple and straightforward. Super helpful. AND it worked!! Thanks, will be sure to check out your other videos.

    • @nikolaosboutsioukis3945
      @nikolaosboutsioukis3945 ปีที่แล้ว +1

      Bro this feature was turned off by google couple of months ago how you say that it worked?

  • @deliciafernandes9946
    @deliciafernandes9946 2 ปีที่แล้ว

    Only youtuber I can trust with python content!

  • @lukerobertson1000
    @lukerobertson1000 4 ปีที่แล้ว +6

    Thanks so much Corey! It's such a nice feeling to get all the code working and follow along. I really appreciate the list of contacts idea at the end, it seems so logical to do it that way and what can I say, I'm a big fan of logic! :)
    Thanks again! I'm loving your content and explanations.

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      al-taie.github.io/quick-mailer

  • @daegudude1048
    @daegudude1048 5 ปีที่แล้ว +2

    Corey, can you post some of useful website such as documentations that are related to this video?
    Your video is really helpful but after that when I try other variations or face some problems, I am not able to do go through the problems.
    It would be really helpful where you have watched resource/documents for the video. You are the best!

  • @afzalkhan2288
    @afzalkhan2288 5 ปีที่แล้ว +13

    Multithreading in python --- please cover this

  • @alexthewebdesigner1856
    @alexthewebdesigner1856 2 ปีที่แล้ว

    @Corey Schafer
    Thanx for posting such a comprehensive vid. None of the other videos on email via Python touched on Google settings regarding 2-step or TLS.

  • @harsh3305
    @harsh3305 5 ปีที่แล้ว +7

    Thanks a lot helped me generate automatic email notifications in my web scraping project !!
    PS- Puppy is so cute :D

  • @balasankarnagarajan9238
    @balasankarnagarajan9238 5 ปีที่แล้ว +12

    Nice Video! KIndly make a video on "Sending Whatsapp messages" using Python

    • @KASANITEJ
      @KASANITEJ 5 ปีที่แล้ว +2

      lol.. then its a disaster

  • @jthomassaldias
    @jthomassaldias ปีที่แล้ว

    Corey, i have some problems running the code if I write it as shown, but when copied to my VS it does ran great. Thank you for this great tutorial.

  • @Canda-fh4xc
    @Canda-fh4xc 5 ปีที่แล้ว +1

    Thank you Corey for the video. It will be really nice if you can make a video about how to read emails from Gmail

  • @rahesc
    @rahesc 4 ปีที่แล้ว +2

    this is really awesome and helpful. you simplify it so much. thank you!!

  • @darkspl
    @darkspl 5 ปีที่แล้ว +1

    Could you make some toturial for creation of document like in word /pdf with specific elements(fields) that must be taken from mutliple(also online) sources? Amazing toturial sir!!

  • @soumitralahiri100
    @soumitralahiri100 2 ปีที่แล้ว +1

    Excellent video Corey! The steps were very clearly explained and worked without any issues. One question - the example that you provide is for including multiple attachments to a single email; however, if I wish to include the list of attachments to individual emails (one attachment per email), what would be the best way to proceed? I have looked this up in details and not found a satisfactory solution. Will greatly appreciate your help with this.

  • @rotrose7531
    @rotrose7531 3 ปีที่แล้ว +1

    Your python tutorials are unfailingly amazing!

  • @potschochterpotschochter2403
    @potschochterpotschochter2403 3 ปีที่แล้ว

    I just bumped into your video. It is amazing. Thank you so much. I am so very new to Python and I think that this is one of the best tutorial I ahbe ever seen here on youtube. Thank you so much.

  • @chippandenga6722
    @chippandenga6722 3 ปีที่แล้ว +2

    Thank you very much Corey. What could be the reason for someone to dislike such a valuable video?😂

  • @JorgeEscobarMX
    @JorgeEscobarMX ปีที่แล้ว

    I loved this one, it seems so simple to send emails here.

  • @ashishpatil3416
    @ashishpatil3416 5 ปีที่แล้ว +1

    Hey Corey, you are real tech nerd. Video is awesome.

  • @rewadia123
    @rewadia123 3 ปีที่แล้ว

    Thanks for explaining each type in detail

  • @axvex595
    @axvex595 3 ปีที่แล้ว +2

    when I search: myaccount.google.com/apppasswords
    it gives me an error that says: The setting you are looking for is not available for your account.

  • @darkbanditEX
    @darkbanditEX 2 ปีที่แล้ว

    Thank you Corey for another great video. Hope to see you back again in the future.

  • @milindkhobragade877
    @milindkhobragade877 2 ปีที่แล้ว +1

    Thanks for the tut, as always it's very informative and explanatory.
    You covered all but html content is visible in the mail and not the plain text which you set by msg.set_content("This is a plain text email") in the line 16. Would you please explain, I'm stuck at that point since 2 days.

  • @vchandm23
    @vchandm23 5 ปีที่แล้ว +4

    Can you do a video on Python and Docker enabled applications, please? BTW this video was very informative and learned new stuff, another ace up my sleeve when needed for my project.

  • @pratikmahamuni4856
    @pratikmahamuni4856 4 ปีที่แล้ว +4

    Great video, thank you for the tutorial. Very thorough!
    One question: How can the html string email have logos that are created as PNGs or JPEGs?

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code.
      al-taie.github.io/quick-mailer

  • @lydiaaidyl3328
    @lydiaaidyl3328 4 ปีที่แล้ว

    Thanks a lot, especially for the HTML part, it was the only thing it worked for me after trying a lot of different options

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      check out here:
      al-taie.github.io/quick-mailer

  • @marvinreyes7459
    @marvinreyes7459 4 ปีที่แล้ว

    We need more people like you man!.

  • @johangodinho
    @johangodinho 4 ปีที่แล้ว +4

    Thanks a lot mate, I appreciate the effort you have put into making this video so easy to understand while also meeting the target of the intended title of the video. After looking online for a long time I finally came across your tutorial and I'm leaving with more information than I needed which is all so useful. So once again thanks a lot cus you made my day and all the best for the growth of your channel :))))

    • @alexvallex5487
      @alexvallex5487 2 ปีที่แล้ว

      do you know where in the code should i put by enviroment variable of the app password i

  • @rushibhagwat4108
    @rushibhagwat4108 3 ปีที่แล้ว

    Thanks buddy
    you saved my project, I really appreciate your work.

  • @louiswallice3746
    @louiswallice3746 2 ปีที่แล้ว

    like many of your videos, you got the best content and also every methods works :) thanks a lot mate!

  • @shazkingdom1702
    @shazkingdom1702 5 ปีที่แล้ว +11

    Bronx puppy 🐶 is cute 😂

  • @Xatex18
    @Xatex18 ปีที่แล้ว

    Thank you, this clarified some questions.

  • @kayderl
    @kayderl 4 ปีที่แล้ว +1

    Thumbs up. Love all your vids, they are always so informative and useful.

  • @victormaia4192
    @victormaia4192 3 ปีที่แล้ว

    Thanks! This video made de subject more clear to me and I could follow the ressults

  • @md.fazleyrafy8015
    @md.fazleyrafy8015 5 ปีที่แล้ว +4

    beginner's question:
    I generated a password protected app named "Python test" in my Gmail settings and wrote the program in Py-charm IDE script. But I did not receive any email as you did? can you tell me what am I doing wrong there?

  • @wilberrosales6345
    @wilberrosales6345 3 ปีที่แล้ว

    YOU ARE THE GOAT COREY

  • @matthewelliott4319
    @matthewelliott4319 3 ปีที่แล้ว

    I had been using smtplib.SMTP with the ehlo and starttls for awhile. Nice to know there is a more elegant way to do the same thing with smtp.SMTP_SSL. Thanks for the video!

    • @alexvallex5487
      @alexvallex5487 2 ปีที่แล้ว

      where do i put the app password in the code?

  • @debjitchattopadhyay7627
    @debjitchattopadhyay7627 4 ปีที่แล้ว

    Awesome tutorial!!!
    This video just gave a idea for a new project
    Building a Custom Mailing Enterprise Software now.
    Thanks a lot!!

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      al-taie.github.io/quick-mailer

    • @debjitchattopadhyay7627
      @debjitchattopadhyay7627 3 ปีที่แล้ว +1

      @@al-taie thanks 👍

  • @bulldawg4498
    @bulldawg4498 4 ปีที่แล้ว +1

    Hope these aren't a duplicate questions: How do you send to multiple recipients? Plus is there a site or book where all this is documented?

    • @TheFuturistPodcast
      @TheFuturistPodcast 4 ปีที่แล้ว

      To send to multiple people you will use an array, or list then use a for loop to send each of the emails..

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options
      check out here:
      al-taie.github.io/quick-mailer

  • @mayoufmohamedanis5337
    @mayoufmohamedanis5337 10 หลายเดือนก่อน

    Very intuitive !

  • @martind54
    @martind54 3 ปีที่แล้ว

    Corey, thank you very much for this video. It's extremely clear, fast pace, super useful. Thanks mate!

  • @RaoAnilYadav
    @RaoAnilYadav ปีที่แล้ว

    Hello Corey, Thank you very much for this video. It's extremely clear, fast pace, super useful. BR, Anil

  • @VCodeIt
    @VCodeIt ปีที่แล้ว

    Thanks a lot, It is just splendid explanation.

  • @ashu60071
    @ashu60071 4 ปีที่แล้ว +1

    this was so amazing!!!
    loved all your videos. big fan

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options
      check out here:
      al-taie.github.io/quick-mailer

  • @rvg296
    @rvg296 4 ปีที่แล้ว +5

    I always get this error when I use your code with Outlook SMTP hostname and Port
    raise SMTPAuthenticationError(code, resp)
    smtplib.SMTPAuthenticationError: (535, b'5.7.8 Error: authentication failed: authentication failure')

    • @shyamananth
      @shyamananth 4 ปีที่แล้ว

      I am getting the same error. By Any chance , did you get the a solution to send email via outlook.com

    • @jinhe4438
      @jinhe4438 4 ปีที่แล้ว

      U might need to disable MFA first.

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      al-taie.github.io/quick-mailer

  • @user-ml5pi1qt8s
    @user-ml5pi1qt8s 5 หลายเดือนก่อน

    Thanks for the video. Its was very helpful

  • @yashindane2844
    @yashindane2844 2 ปีที่แล้ว +1

    Thanks for the amazing video ☺️

  • @2012daffyduck
    @2012daffyduck 4 ปีที่แล้ว +1

    You are a Python God.

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      check out here:
      al-taie.github.io/quick-mailer

  • @claylanzino9749
    @claylanzino9749 3 ปีที่แล้ว

    Very well. Thanks for Sharing.

  • @bardiagraphics154
    @bardiagraphics154 5 ปีที่แล้ว +5

    How come it tells me The setting you are looking for is not available for your account.
    when I try to go to app passwords? :(

    • @xXxXLoneWolf103XxXx
      @xXxXLoneWolf103XxXx 4 ปีที่แล้ว +1

      You need two factor authentication turned on

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      al-taie.github.io/quick-mailer

  • @ivari1
    @ivari1 2 ปีที่แล้ว +2

    How to I add a variable in the html code for the gmail?

  • @TeckTales
    @TeckTales 2 หลายเดือนก่อน

    looks like they removed smtpd in python 3.12, couldn't test on localhost. Great video. God bless..

  • @kamaldhungana6677
    @kamaldhungana6677 ปีที่แล้ว

    you explained things very nicely!

  • @gameration6450
    @gameration6450 3 ปีที่แล้ว

    Protect Coray at all cost, he is a legend

  • @prashanthenuganti736
    @prashanthenuganti736 3 ปีที่แล้ว

    Very clear and simple.

  • @tgani96
    @tgani96 5 ปีที่แล้ว +2

    on 17:01 minute that way Im trying to connect to host but it gives me error using 465 port
    raise SMTPServerDisconnected("Connection unexpectedly closed")
    smtplib.SMTPServerDisconnected: Connection unexpectedly closed

  • @stayatohm
    @stayatohm ปีที่แล้ว

    17:25 adding attachments explination starts

  • @sol5179
    @sol5179 5 ปีที่แล้ว +1

    Super useful! Thank you.

  • @romankh5338
    @romankh5338 4 ปีที่แล้ว +1

    Loving your work! Thank you!

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options
      check out here:
      al-taie.github.io/quick-mailer

  • @LeonardoBPG
    @LeonardoBPG 5 ปีที่แล้ว +1

    Can you make a video on replying e-mails maintaining the history?

  • @prtvivs.hotwheeeels
    @prtvivs.hotwheeeels 4 ปีที่แล้ว

    You seriously are a genius!
    Love all you videos!
    Can we read incoming emails in a similar way? Is there a possibility to do that?

  • @VantedL
    @VantedL 4 ปีที่แล้ว +1

    Thank you so much this video is realy helpfull

  • @martind54
    @martind54 3 ปีที่แล้ว

    Got a new subscriber because of the content of this video!

  • @carltondaniel8966
    @carltondaniel8966 4 ปีที่แล้ว +1

    Thank you sir, it helped me understand sending email in a simple way

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      al-taie.github.io/quick-mailer

  • @dnetne5508
    @dnetne5508 4 ปีที่แล้ว +1

    Thanks

  • @aksanabuster1874
    @aksanabuster1874 4 ปีที่แล้ว

    Hi Corey,
    I watch your TH-cam content via Python. Thank you so much for your contribution to Opensource.
    I'm working on a project and was wondering if we could Zoom sometime this week?
    Thank you for your time and I look forward to hearing from you soon.
    Best,

    • @coreyms
      @coreyms  4 ปีที่แล้ว

      Hey Aksana. What time of project are you working on? If you could email me then I probably have a better chance of seeing your response, but I can’t promise anything because I get a lot of messages each day

  • @SimplyDev
    @SimplyDev 3 ปีที่แล้ว

    Great video! It would be interesting to see how email clients protect against mass email spam haha.

  • @ketanbutte3497
    @ketanbutte3497 3 ปีที่แล้ว +2

    watching coreys videos is like getting stack overflow on steroids

  • @amirroohi4566
    @amirroohi4566 5 ปีที่แล้ว +1

    Amazing channel, subscribing right away

  • @novianindy887
    @novianindy887 ปีที่แล้ว +1

    Beside the gmail thing,
    do all the scripts still work nowadays -if we use an Smtp server?

  • @yltfy
    @yltfy 4 ปีที่แล้ว +1

    Another wonderful video!

    • @al-taie
      @al-taie 3 ปีที่แล้ว

      You can use (quick-mailer) module, to send email in two lines of code, with a lot of options.
      check out here:
      al-taie.github.io/quick-mailer

  • @medizinmagdeburg544
    @medizinmagdeburg544 5 ปีที่แล้ว +1

    Thanks for your work!

  • @danielrosas2240
    @danielrosas2240 3 ปีที่แล้ว

    Thank u so much, Corey! Greetings from Mexico!

  • @tebbythomas1809
    @tebbythomas1809 5 ปีที่แล้ว +1

    Excellent! Thanks

  • @yltfy
    @yltfy 3 ปีที่แล้ว

    Great video. Just one question: was your email box bombed by test emails from the viewers in the end?

  • @afolabisunday4183
    @afolabisunday4183 4 ปีที่แล้ว +1

    Thanks Corey, your videos has helped Me alot as a self taught programmer, will be exciting to see you do videos on Blockchain, Maybe Stellar Blockchain.
    Thanks Soooooo much

  • @mseroglu47
    @mseroglu47 2 ปีที่แล้ว

    thanks. the video is pretty extensive.

  • @peluso_palit
    @peluso_palit 5 ปีที่แล้ว +1

    Great tutorial. I follow along and step by step, it works perfectly. But my question is, how we receive & read email with Python? Thanking you in advance 😊😊

    • @coreyms
      @coreyms  5 ปีที่แล้ว +2

      I might try to throw a video together on that subject in the near future

    • @peluso_palit
      @peluso_palit 5 ปีที่แล้ว

      @@coreyms thank you sir.

  • @portfedh
    @portfedh 3 ปีที่แล้ว

    This was really helpful. Thank you very much!

  • @palitfiq3742
    @palitfiq3742 5 ปีที่แล้ว +1

    It works! Thank you.