Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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