Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Email Sender/send_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ def Send():
h1 = Label(root,text="Email Sender",bg="orange",fg="black",font= ('verdana',13,'bold'))
h1.place(x=135,y=5)

img = ImageTk.PhotoImage(Image.open('gmail.png'))
gmailImagePath ='D:\coding\LEARNING FROM OTHER ACODES\Python-GUI-Project\Email Sender\gmail.png' #change the path to gmail.png

img = ImageTk.PhotoImage(Image.open(gmailImagePath))

logo = Label(root,image=img,borderwidth=0)
logo.place(x=150,y=38)
Expand Down