Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 vardhancse
		
			vardhancse
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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.
 
					
				
		
 zhadrakas
		
			zhadrakas
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
		
			vardhancse
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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.
May be Break
<br />
 vardhancse
		
			vardhancse
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		nope its not working
Where are you trying this?
 
					
				
		
Paste some sample text in the expected format or use %0A for a new line or %0A %0A to leave a line between
 vardhancse
		
			vardhancse
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		could you please update in below text for my reference.
='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '&body=Template Zeile 1 %0A Zeile 2 %0A ...'
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
 
					
				
		
Try
='mailto:' & 'test2@email.de' & '?subject=BETREFF'& '&body=Template Zeile 1 %0A %0A Zeile 2 %0A %0A ...'
