Hey, @Swayms-stack
Try to fetch the sender's mail credentials from an external file.
Make a new python file as config.py
store username and password as :
username = "Gmail address"
password = password
Then in the main file
import the config.py and replace the credentials with these variable names
Code :-
import config
Sender_EmailAddress = config.username
password = config.password
Do not push the config.py