There are plenty of answers on how to embed images into emails in python. What I can't figure out is how to embed an image that's clickable and leads you to a site.
Sending Multipart html emails which contain embedded images I pretty much followed the first comment of this exactly. I just need to figure out how to add a link to that image
this is what I followed
msgRoot = MIMEMultipart('related')
fp = open('test.jpg', 'rb')
msgImage = MIMEImage(fp.read())
fp.close()
msgImage.add_header('Content-ID', "<image1>")
msgRoot.attach(msgImage)
Obviously this just embeds an image, but I need it to embed a linked image!