diff --git a/Email Sender/send_email.py b/Email Sender/send_email.py index 4272c73..d194260 100644 --- a/Email Sender/send_email.py +++ b/Email Sender/send_email.py @@ -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)