| jun2006.tar |
Listing 1 A Jmeter script that sends an email
<project name="example1" default="sendmail" >
<property file="default.properties"/>
<target name="sendmail" description="Util to send email">
<mail mailhost="${mail.host}" subject="Example1">
<from address="${mail.from}"/>
<to address="${mail.to}"/>
<message>Hello World... Sending zips from ${log.dir} \
${mail.message}</message>
<fileset dir="${log.dir}">
<include name="**/*.zip"/>
</fileset>
</mail>
</target>
</project>
|