hi everyone
I'm trying to write a small program in VB.net that use the mailto protocol.
I'm trying to open the default mail client (Outlook)
with the mail to but get a syntax error.
What I would like to to is use the display name as mail to paramater and not the address itself.
one example is to mail to corp a/person a"b (there are " and / in the string) so I trying
dim str1 as string = "a/person a""b"
system.info.start.process("mailto:" & str1)
after that the outlook is open but a popup msgbox says the syntax is incorrect.
Does the protocol does not support / and " characters?
I'm trying to write a small program in VB.net that use the mailto protocol.
I'm trying to open the default mail client (Outlook)
with the mail to but get a syntax error.
What I would like to to is use the display name as mail to paramater and not the address itself.
one example is to mail to corp a/person a"b (there are " and / in the string) so I trying
dim str1 as string = "a/person a""b"
system.info.start.process("mailto:" & str1)
after that the outlook is open but a popup msgbox says the syntax is incorrect.
Does the protocol does not support / and " characters?