html - Is it possible to include image in email as attachment using a cid and web server URL? -
i working on email signature sent outlook , outlook web client applied individuals in company using adolsign (a third party tool generates email signature based on ad information , html template).
it needs contain logo.
based on research, images linked directly web server below cause 2 problems. 1. blocked web clients security reasons , 2. unavailable when user has downloaded email , opens offline.
<img src="http://www.myurl.com/myimage" width="142" height="30" >
embedding image using svg or 64 bit encoded data tag doesn't work in outlook, not option.
i believe using cid tag create , reference hidden attachment best option particular client, i'm struggling work using url. using network file path not great option won't resolve users sending emails web client. i'd use doesn't render when open in outlook:
<img src="cid:http://www.myurl.com/myimage" width="142" height="30" >
my hope outlook create , reference attachment in email downloaded url when email sent.
how accomplish this? possible? please let me know if of assumptions making incorrect.
Comments
Post a Comment