Skip to content

Commit e7a5546

Browse files
Merge pull request Aashishkumar123#12 from riteshsonawane1372/master
gmail.png error solved
2 parents 91475d5 + 9483148 commit e7a5546

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)