Make a email template with python code

How to make a email template with python










Email = '''Dear <|name|>,
Greeting from ABC coding house. Congratulations to you on our brilliant achievement.
I am happy to tell you about you selection 
you are selected! for the job

Thanks and regards,

ABC coding house team,
Date: <|date|>'''

name = input("Enter the kilaint name: ")
date = input("Enter the date: ")

Email = Email.replace("<|name|>",name)
Email = Email.replace("<|date|>",date)

print(Email)

Post a Comment

Previous Post Next Post