Hope I got your question right... First you need to have your image uploaded to your website. Then you can construct an image link. Just replace src and alt:
HTML Code:
<img src="http://www.sugarcrm.com/crm/images/SugarCRM_logo.gif" alt="SugarCRM" />
1. Open the template editor: Campaigns > (campaign name) > Email Marketing > (email marketing name) > Edit > Email template > Edit
2. Select tracker name, click Insert tracker URL. You see "Default link text. "
3. Click the "HTML" button
4. Search (Ctrl+F) for "Default link text. "
HTML Code:
<a href="{survey1}"> Default link text. </a> 5. Then replace the text with the image reference:
HTML Code:
<a href="{survey1}"><img src="http://www.sugarcrm.com/crm/images/SugarCRM_logo.gif" alt="SugarCRM" /></a> And then you'll be able to track clicks to the image in your email. (However, as some email clients are set up not display images, it's better to have a text link in your email as well.)
Bookmarks