Skip to content

Commit 9483148

Browse files
gmail.png error solved
1 parent 91475d5 commit 9483148

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Email Sender/send_email.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ def Send():
120120
h1 = Label(root,text="Email Sender",bg="orange",fg="black",font= ('verdana',13,'bold'))
121121
h1.place(x=135,y=5)
122122

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

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

0 commit comments

Comments
 (0)