Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vardhancse
Specialist III
Specialist III

Action to trigger email in outlook

Hi,

I have one requirement is that:

on click of text object, email should trigger with some standard template.

I know using button actions I can able to trigger email, but requirement was to open outlook with already defined template

can any one please let me know any solution for my requirement.

12 Replies
zhadrakas
Specialist II
Specialist II

Hello Sasi,

- Create a text box with Trigger "Open URL"

- Then add this as your URL

='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '&body=Template Zeile 1 %0A Zeile 2 %0A ...'

regards

tim

vardhancse
Specialist III
Specialist III
Author

Hi thank you for response.

Its working fine as expected.

One more clarification please I want to display in new line text.

could you please let me know html tags for the same.

Anil_Babu_Samineni

May be Break

<br />

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
vardhancse
Specialist III
Specialist III
Author

nope its not working

Anil_Babu_Samineni

Where are you trying this?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable

Paste some sample text in the expected format or use %0A for a new line or %0A %0A to leave a line between

vardhancse
Specialist III
Specialist III
Author

could you please update in below text for my reference.


='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '&body=Template Zeile 1 %0A Zeile 2 %0A ...'

Anil_Babu_Samineni

You can use something like below

='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '& Chr(10) & body=Template Zeile 1 %0A Zeile 2 %0A ...'


Here, Chr(10) Provides the Next line in qlikview

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable

Try

='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '&body=Template Zeile 1 %0A %0A Zeile 2 %0A %0A ...'