How to Format Email to include image/video in SMTP

2dr4u

Member
Hi,

Is there any guidance on how to format email when using SMTP to include images/videos?

Does it accept html tags to make text bold, change fonts, colors, etc.?

Thanks.
 

2dr4u

Member
Tried a few html tags and it worked except video. Video html code is not working. My video source is YouTube if it helps.
 
P

Pabblymember11

Guest
Hey @2dr4u

You can try to pass the youtube video in the following pattern.

Code:
<iframe width="420" height="315"
src="https://www.youtube.com/embed/tgbNymZ7vqY">
</iframe>

For more HTML tags -
 
Top