Send emails with inline images

I want to send an email inside my Unity App with images added inline.

I have no problem sending the email but when I check it the image is gone or it’s just on the attachments.

I have tried a bunch of methods, all based on this:
c# - Send inline image in email - Stack Overflow (2nd answer)
C# sending mails with images inline using SmtpClient - Stack Overflow

I have tried gmail and outlook live and still no luck. I can also add the image as a normal attachment, just not inline with the text.

Any ideas?

string filename = “screenshot.png”;
mail.Attachments.Add(new Attachment(Application.dataPath + “/” + filename));

I have been messing aroun a little and sure still is a common “2 hours lost” in 2018

Did you ever figure this out?