I have problem. When mail si send is without template. I want to use
cruisecontrol.css template for sending mail that mail will have some
style and not just pure text.
this is my ccnet.config.
<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
<!-- This is your CruiseControl.NET Server Configuration file. Add
your projects below! -->
<project name="[eMedicine]">
<webURL>http://localhost:8080/ccnet</webURL>
<modificationDelaySeconds>10</modificationDelaySeconds>
<sourcecontrol type="svn" >
<workingDirectory>D:\CCNET\_PROJEKTI\eMedicine</workingDirectory>
<username>xx</username>
<password>xx</password>
<executable>C:\Program
Files\SlikSvn\bin\svn.exe</executable>
</sourcecontrol>
<tasks>
<msbuild>
<executable>C:\WINDOWS\Microsoft.NET\Framework\v3.5\MsBuild.exe</
executable>
<workingDirectory>D:\CCNET\_PROJEKTI\eMedicine</workingDirectory>
<projectFile>Build.xml</projectFile>
<buildArgs>/noconsolelogger
/p:Configuration=Debug /v:diag</
buildArgs>
<timeout>600</timeout>
<logger>C:\Program
Files\CruiseControl.NET\server
\ThoughtWorks.CruiseControl.MsBuild.dll</logger>
</msbuild>
</tasks>
<publishers>
<xmllogger>
<logDir>log</logDir>
</xmllogger>
<merge>
<files>
<file>C:\Program
Files\CruiseControl.NET\server\[eMedicine]
\Artifacts\msbuild-results.xml</file>
<file>D:\CCNET\_PROJEKTI\eMedicine\TestResult.xml</file>
</files>
</merge>
<email from="[email protected]"
mailhost="smtp.gmail.com"
mailport="587" includeDetails="TRUE"
mailhostUsername="[email protected]"
mailhostPassword="xxx"
useSSL="TRUE">
<users>
<user name="sss" group="developers"
address="[email protected]"/
>
</users>
<groups>
<group name="developers"
notification="always"/>
</groups>
</email>
</publishers>
</project>
</cruisecontrol>
Thx