Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a text object where I would like to launch MS Outlook with a particular email address and standard subject text. From there requestor will type the content of the email.
Thanks for the help.
Jeff
Go to action tab on your text object and add External>>Launch in the application browse to your saved outlook template. Now if you click on the text object it will open your template.
Hope that helps.
Ivan:
Thanks for the response. What do you mean by "outlook template"?
Thanks.
Jeff
Create a template for your message.
Use email templates to send messages that include information that infrequently changes from message to message. Compose and save a message as a template, and then reuse it when you want it. New information can be added before the template is sent as an email message.
Keyboard shortcut To create an email message, press CTRL+SHIFT+M.
In the message body, enter the content that you want.
Hi, Below links may help you
Hi Ivan,
I am tring to get the email address of current user using VB script in QlikView.
But I am getting as NT\user. Please help me in getting the email address of current user.
My script
Set objEmail = CreateObject("CDO.Message")
Set WshNetwork = CreateObject("WScript.Network")
objEmail.From = WshNetwork.UserName & "@mydomain.com"
This will get the email for the current user and put it in a variable.
Hi Ivan,
Thank you very much for your reply. But I still have the problem.
My NT ID or Username is Domain\ABCD
My Email address is xx.yy@tt.com
Based on your macro I am getting ABCD@tt.com. But I am in need of xx.yy@tt.com
Please help me on getting this.
Regards,
Arun.
Have a look at this: http://community.qlik.com/docs/DOC-6079
The start of the code describes how to pull the Account Name etc. from the Active Directory account.
Try this one.
Sub GetAddress
Set objOL = CreateObject("Outlook.Application")
set v2 = ActiveDocument.Variables("Variable2")
v2.SetContent objOL.Application.Session.CurrentUser.Address ,true
End Sub