Default email templates compatibility with Outlook 2007
Updated: 21 May 2010 | 6 comments
This issue has been solved. See solution.
I found KB article 42629 which worked great for showing the banner background color and the word “altiris” for default email templates read with the Outlook 2007 client. Does anyone know how to correct another little frustrating display issue I’m having? If you will take a look at the examples below, the first one is the way the email displays from the client. Notice the words “A new incident has been submitted….” are combined with the ticket priority (Medium) and in the yellow box. However, when viewing in a browser or on my BlackBerry, the new incident message is above the line, the way I want it to display.
I haven’t been able to find any code examples on the KB to use and haven’t had any luck figuring it out for myself.
Thanks!
discussion Filed Under:
Comments
Did this issue begin after your modification?
Did this issue begin after your modification to show 'altiris' in white? If so, it is likely that a code change you made has an error. Please post the relevant code section from your new file. The section I'm talking about, of course, is the section you modified based on the KB you referenced.
It looks like this:
Original:
<table cellpadding="0" cellspacing="0" class="banner">
<tr valign="top">
<td nowrap style="padding-left:10px;">
<span style="font-size:xx-small;font-weight:normal;color:#F7FBFF;"><big>altiris</big><br></span>
<span style="font-weight: bold;font-size: 16pt;color:#000063;">Incident Received</span>
</td>
</tr>
</table>
Office 2007 Compatible:
<table cellpadding="0" cellspacing="0" class="banner" width="100%">
<tr valign="top">
<td nowrap style="padding-left:10px;background-color: #7396B5;">
<span style="font-size:large;font-weight:normal;color:#F7FBFF;"><big>altiris</big><br></span>
<span style="font-weight: bold;font-size: 16pt;color:#000063;">Incident Received</span>
</td>
</tr>
</table>
Mike Clemson, Systems Engineer
Intuitive Technology Group -- Symantec Platinum Partner
No, it was occurring prior to the modification
Perhaps the issue is elsewhere in the file
Perhaps the issue is elsewhere in the file. I use Helpdesk and receive notifications in Outlook 2007. Are you able to post the HTML for the entire template? Maybe if I compare it to mine I can find a difference that causes the issue.
Mike Clemson, Systems Engineer
Intuitive Technology Group -- Symantec Platinum Partner
<html> <head> <title>Altiri
Thanks for the help with this!!!
You are missing a closing Table and closing TD and TR tags
Office 2003 an the BB are much more forgiving than Office 2007. Since the HTML closing tags are missing, the tables are running together. All the 3 items below and try it then,
rob
<table>
<tr>
<td class="txtMsgValue" colspan="2">
A new incident has been submitted to the HD Supervisor Queue:
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" ID="Table5">
<tr valign=top>
<td class="NUMBER_MAP(WORKITEM(workitem_priority_lookup_id), 100[[emailCriticalTitle]], 200[[emailHighTitle]], 300[[emailMedWarnTitle]], [[emailLowTitle]])">
<b>WORKITEM(workitem_priority_lookup_value)</b>
</td>
<td class="NUMBER_MAP(WORKITEM(workitem_priority_lookup_id), 100[[emailCriticalText]], 200[[emailHighText]], 300[[emailMedWarnText]], [[emailLowText]])"
width=100%>
<b>WORKITEM_LINK[[#$$workitem_number$$ - $$workitem_title$$]]</b>
</td>
</tr>
<tr><td colspan=4><img src="URLALIAS(AppWeaverURL)/images/spacer.gif" height=4 width=1></td></tr>
</table>
That fixed it!!!
That fixed it!!! Thanks so much Rob!
Would you like to reply?
Login or Register to post your comment.