Auto fetch logo in email signature in Outlook
I want to automatically fetch logo through transport rule , the logo is at a location in GDrive , I have written the HTML code for it , but when the email is sent , the recipient does receive the logo outline , but is shows as blocked image src .
Request you to help regarding same , below is my code pls do necessary changes if required –
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<title>Email Signature</title>
</head>
<body>
<table
style=”width: 600px; font-size: 12px; font-family: Arial, sans-serif; line-height: normal; background: transparent !important;”
cellpadding=”0″ cellspacing=”0″>
<tbody>
<tr>
<td style=”width: 364px; vertical-align: top;” valign=”top”>
<span
style=”font-size: 13px; font-family: Arial, sans-serif; line-height: 20px; font-weight: bold;”>
%%firstname%% %%lastname%%
<br>
</span>
<span style=”font-size: 13px; font-family: Arial, sans-serif; line-height: 25px;”>
<span style=” font-family: Arial, sans-serif; line-height: 15px;”><span>
%%Title%% (%%Department%%)
<br>
<br>
</span>
</span>
<img border=”0″ style=”width: 100px; height: 30px; border: 0;”
src=””>
<p
style=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;margin:0;color:grey”>
<span style=”font-family: Arial, sans-serif;”>
</span>
<br>
</p>
<p style=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;margin:0″>
<span style=”font-family: Arial, sans-serif; “>
<span style=”font-weight: bold;”>M: </span>%%MobilePhone%% | <span style=”font-weight: bold;”>P: </span>%%Phone%%
</span>
<br>
</span>
<span style=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;”>
<span style=”font-family: Arial, sans-serif; “>
<a href=”mailto:%%Email%%” style=”font-family: Arial, sans-serif; “>
<span style=”font-family: Arial, sans-serif; “>%%email%%</span>
</a>
</span>
<span>
<p style=”margin:0;padding-bottom:1px”><a href=””
target=”_blank” style=””>
<span style=”font-family: Arial, sans-serif; “></span>
</a></p>
</span>
<br>
</span>
<br>
<span style=”padding-top: 10px; vertical-align: bottom;”>
<span style=”display: inline-block; height: 22px;”></span>
</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
I want to automatically fetch logo through transport rule , the logo is at a location in GDrive , I have written the HTML code for it , but when the email is sent , the recipient does receive the logo outline , but is shows as blocked image src . Request you to help regarding same , below is my code pls do necessary changes if required – <!DOCTYPE html><html lang=”en”> <head><meta charset=”UTF-8″><title>Email Signature</title></head> <body><tablestyle=”width: 600px; font-size: 12px; font-family: Arial, sans-serif; line-height: normal; background: transparent !important;”cellpadding=”0″ cellspacing=”0″><tbody><tr> <td style=”width: 364px; vertical-align: top;” valign=”top”><spanstyle=”font-size: 13px; font-family: Arial, sans-serif; line-height: 20px; font-weight: bold;”>%%firstname%% %%lastname%%<br></span><span style=”font-size: 13px; font-family: Arial, sans-serif; line-height: 25px;”><span style=” font-family: Arial, sans-serif; line-height: 15px;”><span>%%Title%% (%%Department%%)<br><br></span></span> <img border=”0″ style=”width: 100px; height: 30px; border: 0;”src=””> <pstyle=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;margin:0;color:grey”><span style=”font-family: Arial, sans-serif;”></span><br></p><p style=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;margin:0″><span style=”font-family: Arial, sans-serif; “><span style=”font-weight: bold;”>M: </span>%%MobilePhone%% | <span style=”font-weight: bold;”>P: </span>%%Phone%%</span><br></span><span style=”font-size: 12px; font-family: Arial, sans-serif; padding-bottom: 1px;”><span style=”font-family: Arial, sans-serif; “> <a href=”mailto:%%Email%%” style=”font-family: Arial, sans-serif; “><span style=”font-family: Arial, sans-serif; “>%%email%%</span></a></span><span><p style=”margin:0;padding-bottom:1px”><a href=””target=”_blank” style=””><span style=”font-family: Arial, sans-serif; “></span></a></p></span><br></span> <br><span style=”padding-top: 10px; vertical-align: bottom;”><span style=”display: inline-block; height: 22px;”></span></span></td></tr></tbody></table></body> </html> Read More