Hi!
Assume you are using some workflow to create a report. Add the send email script task at the end and pass your report as input parameter 'content'.
There are also some standard email workflows already included.
var message = new EmailMessage();
message.smtpHost = 'smtp-server';
message.smtpPort = '25';
message.username = "yoursmtpusername"
message.password = "yoursmtppassword"
message.fromName = "vRA Report";
message.fromAddress = "vRA@server";message.toAddress = "your@email"
message.subject = "vRA Report";
message.addMimePart(content,"text/html; charset=UTF-8");