Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can I send text in the email

Hi Team

I'm able to send the required reports to the users in PDF Format. But I need to add some text to the same email..How can i do that??

need your help

Thanks

1 Reply
andrespa
Specialist
Specialist

Hi Anoop,

You can do this using a Macro:

Set objMessage = CreateObject("CDO.Message")

objMessage.Subject = "Subject"

objMessage.Sender = "imacros@test.com"

objMessage.To = "jim@test.com"

objMessage.TextBody = "iMacros script completed. Status = OK"   /// You put your text here

objMessage.Send

The only problem with this solution is that you have to use IE Plugin.

Hope it helps.

Best regards,

Andrés