Modifying the Appearance of Alerts
Applies to: SharePoint Foundation 2010
You can customize the appearance of e-mail alert notifications by modifying the associated cascading style sheets by using the Format element of each alert template. For more information about alert templates, see Predefined Alert Templates.
In addition to the formatting styles that are defined in the Format element, alert templates include formatting instructions for user interface elements, such as the Modify my alert settings, Mobile View, and View list buttons, which can be modified or removed.
Modify my alert settings Button
The following code displays the Modify my alert settings button:
<GetVar Name="MySubsUrl" URLEncodeAsURL="TRUE"/>
<HTML><![CDATA[
">$Resources:Alerts_link_modify;</a></td>
<td class="toolbarsep">|</td>]]>
</HTML>
View list URL Button
The following code displays the List URL button:
<GetVar Name="ListUrl" URLEncodeAsURL="TRUE" />
<HTML>
<![CDATA[">$Resources:Alerts_link_view; ]]>
</HTML>
<GetVar Name="ListName" HTMLEncode="TRUE" />
Mobile View Button
The following code displays the Mobile View button:
<Switch>
<Expr><GetVar Name="MobileUrl"/></Expr>
<Case Value = "NULL"/>
<Default>
<HTML><![CDATA[
<td class="toolbarsep">|</td>
<td class="toolbarbutton"><a href="]]>
</HTML>
<GetVar Name="MobileUrl" />
<HTML><![CDATA[
">$Resources:Alerts_mobile_view;</a></td>]]>
</HTML>
</Default>
</Switch>
Steps to Modify Buttons on the Alert E-mail
You can use any XML editing tool to edit the templates.
To edit a template
Create a working copy of AlertTemplates.xml.
Note
Modify a copy of AlertTemplates.xml, not AlertTemplates.xml itself.
Edit the working copy that you just created. Make changes or remove button code as desired.
Use the STSADM command to read the changed templates into the database.
STSADM -o updatealerttemplates -url url -filename name_of_working_copy
Restart Internet Information Server.
Note
You might need to restart the SharePoint Timer Service.