Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!

How can i create a file and send it via email using JS Code activity when you don't have permissions to attach a file in an email from the server

Avatar

Level 3

Hi Everyone,

I have a use case where I need some help-

 

I want to know all the deliveries which are deployed on a given day and send it to myself in an email as a file attachment.

All the deliveries deployed can be found using a query and a temp schema with all required fields can be prepared. But how can i transfer the content of the temp schema into a csv file and then send as an email attachment. Is it possible?

OR

I can write a JS Code to get all the information of deployed deliveries if from there we can do something for this use case.

Please let me know if you have any solutions.

Thank You!

Akash

@Sukrity_Wadhwa 

2 Replies

Avatar

Community Advisor

Hello @akashaj7696 

 

Since you don't have permission to attach a CSV file. Why don't you print the data in the email body itself?

 

Query the data with javascript and then store the data in a variable and then do a for each loop in the email body and print the data.

 

 


     Manoj
     Find me on LinkedIn

Avatar

Level 3
Hi Manoj, Thanks, but could you please elaborate the solution?