Hello there,
I've a problem with sending mail from ANTscript :(
My pc is in local net, mailhost is called ' NetworkDomainController1'.
Everytime I try to run this build.xml, it finished with IO error sending mail. Every mailAddresses
are existing, mailhost is written correctly.
Is here anybody who knows what kind of mistake it is and who can help me?
Milan
Build.xml
<target name="sendMail">
<mail mailhost="NetworkDomainController1" subject="NightBuildResults" encoding="plain">
<from address="meFrom@dom.cz"/>
<replyto address="meReply@dom.cz"/>
<to address="meTo@dom.cz"/>
<message>There are build results here: http://somewhere.local/buildResults</message>
</mail>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|