I'd like to change the font size of a specific word in an email I'm sending using python. This is the code I have so far...
import smtplib
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login("user@gmail.com", "password")
SUBJECT = "The subject"
TEXT = "I would like to change THIS word to bold"
message = 'Subject: {}\n\n{}'.format(SUBJECT, TEXT)
server.sendmail("user@gmail.com", recipients, message)
server.quit()
Is there any way I can change the word "THIS" in the text line to bold (and bigger font), but keep the other words the original font?
Thanks!!!!