I am trying to send mail in my ASP.NET Core MVC project. The mail is being sent successfully. But in my "Outlook" account, the picture I added to the image of the mail does not appear. When I send the same mail to my gmail account, the picture appears in the mail.
My markup:
<img src="example.png" width="100%">
I replace the src field in the code.
The view code generated in the mail is:
<img data-imagetype="External" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAEALAAAAAABAAEAAAIBTAA7" originalsrc="example.png" data-imageproxyendpoint="/actions/ei" width="100%">
Instead of the picture I gave in the src field, it says something ridiculous. What is the reason of this?