Send an e-mail after a successful commit
The sample configuration below will send an e-mail for all commits made to any repository that is hooked into Subversion Notify. It does not filter by repository, path or file type. For these more advanced features, see the sections for RepoPathConfig and Mailto. To use this template, be sure to change the MailServer and E-mail address settings.
<?xml version="1.0" standalone="yes"?>
<subversionNotifyConfig xmlns="http://www.mckechney.com/SubversionNotifyConfig.xsd" LoggingLevel="INFO" MaximumEMailSizeInMb="5"
MaximumEmailSubjectChars="255">
<SVNConfig ExePath="C:\Program Files\Subversion\bin\svnlook.exe" />
<MailServer Name="smtp.mydomain.com" Username="" Password="" ADGlobalCatalog="mydomain.com" FromAddress="fromaddress@mydomain.com"/>
<RepoPathConfig ControlledPaths="/">
<MailTo EMailGroupName="Managers" EMailType="HTML" />
<MailTo EMailAddress="custom@mydomain.com" EMailType="Custom" CustomSubjectFormat="#user# - #fileNames#" CustomEmailTemplateFile="customemail.txt" />
</RepoPathConfig>
<EMailGroup Name="Managers">
<EMail Address="email3@mydomain.com" />
<EMail Address="email4@mydomain.com" />
</EMailGroup>
</subversionNotifyConfig>