Sorry for all the posts but i managed to solve everything, the data wasn't being passed to the template because I made a silly mistake of setting data within the template object instead of doing the following.
for (let venue of venues) {
const result = await jsreport.render({
template: {
shortid: 'H1xtsYmyWI'
},
data: { post : venue }
});
await sendEmail(transporter, result);
}