Answer: The best is to use an online picture, a picture available on your web server.
You can embed online pictures into Styled text with the following code:
<img src="PICTURE_URL_HERE">
Example:
<img src="https://www.maxprog.com/img/ostrich.jpg">
or in case you want also a link to a page:
<a href="URL_HERE"><img src="PICTURE_URL_HERE" border="0"></a>
Example:
<a href="https://www.maxprog.com"><img src="https://www.maxprog.com/img/ostrich.jpg" border="0"></a>
If you need to center the picture in your message use:
<img src="PICTURE_URL_HERE" style="display: block; margin-left: auto; margin-right: auto">
For example:
<img src="https://www.maxprog.com/img/ostrich.jpg" style="display: block; margin-left: auto; margin-right: auto">
If you place this type of code at the beginning of your message, it is where it will be displayed to your recipients. The code is standard HTML.
|