Chun Ji wrote:
I have set a mimemail target, in my build.xml file, which sends out the test results in a html format file. This morning, that target does not work any more. I believe it was our IT people that reset our mail server or port number during the weekend, which cause my target faiure.
The bad thing is I do not have options to specify such value, such as "mailhost" or "mailport" in a "mimemail" target. But somehow, I have to use mimemail in order to send the content of email in html format. So does someone know what I could do ?
Here is my target looks like:
"
<target name="sendemail">
<mimemail messageMimeType="text/html" messageFile="build/test-output/emailReport.html"
tolist="[EMAIL PROTECTED]" subject="daily report" from="[EMAIL PROTECTED]"/>
</target>
"
Use the <mail> task.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]