To have the URI logo appear at the top of system emails, do the following:
Configuration => General => Customize Letters
Find "header Letter XSL"
Edit
Enter this Content:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="head">
<table cellspacing="0" cellpadding="5" border="0">
<xsl:attribute name="style">
<xsl:call-template name="headerTableStyleCss" /> <!-- style.xsl -->
</xsl:attribute>
<!-- LOGO INSERT -->
<tr>
<xsl:attribute name="style">
<xsl:call-template name="headerLogoStyleCss" /> <!-- style.xsl -->
</xsl:attribute>
<td colspan="2">
<div id="mailHeader">
<div id="logoContainer" class="alignLeft">
<img src="http://web.uri.edu/library/files/uri-logo-173x72.jpg" alt="logo"/>
</div>
</div>
</td>
</tr>
<!-- END OF LOGO INSERT -->
<tr>
<xsl:for-each select="notification_data/general_data">
<td>
<h1><xsl:value-of select="letter_name"/></h1>
</td>
<td align="right">
<xsl:value-of select="current_date"/>
</td>
</xsl:for-each>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>
Save.