Reputation: 11
Please provide the solution for how to send test results (CSV file) in Jmeter through Email after Test Run.
How to schedule the test for particular time and send mail automatically
Awaiting for your response
Upvotes: 1
Views: 752
Reputation: 168157
Add the next line to user.properties file (located in the "bin" folder of your JMeter installation)
jmeter.save.saveservice.autoflush=true
testresult.csv
as the attachment. See Load Testing Your Email Server: How to Send and Receive E-mails with JMeter for more information and some example configuraiton. Run your test in command-line non-GUI mode like:
jmeter -n -t yourtest.jmx -l testresult.csv
Upvotes: 1