Skip to main content

Mail Sending Using Tkinter

 Mail Sending Using Tkinter

In this Blog We will learn how to send email through tkinter. Tkinter provides GUI toolkit. With the help of this we can create so many GUI applications. 

In this blog we create the mail sending application using tkinter.

Steps of the project:

1. Import required packages and library

2. Create basic GUI

3. Add required widgets to GUI.

4. Create a function for mail sending.


1. Import required packages and library:



2. Create basic GUI:




3.  Add required widgets to GUI.:

4. Create a function for mail sending.








Output:


smtplib: smtplib is the python built in library for sending and receiving the mail. SMTP stands for Simple Mail Transfer Protocol. 

smtplib.SMTP(domain,port): In this method add domain which you want for example gmail.com. SMTP has three ports which are 25, 465 and 587 by using this three ports we can send the mail. 

smtplib.login(userid,password): This method logins to your account.And send mail from this email id. 

smtplib.sendmail(sender,to,message): This method actual send the mail. This method required three parameters email id of sender, email id of receiver, and body of mail.

Comments

Contact Form

Name

Email *

Message *

Popular posts from this blog

Numpy Library

 Hello Guys, In this blog we will learn about the most important library of python which is NUMPY.  What is numpy? Numpy is a python library that provides a multidimensional array object. It provide fast operations on array. With the help of this library we can do mathematical, logical and basic statistical operation on array.  To use numpy library we have to install it in our machine so that we can use this library. To install this library just insert the following command into your command prompt or terminal.  >>> pip install numpy Now you can easily access the numpy library. How to create 1D Array In the above image, first we import the numpy library. Then with the help of array method we can create the numpy array.  On line no. 2 we create the one dimensional array. In this array you can store integers, float etc. In the array  method we must have to pass list to create a array.  How to create 2D Array           ...