hyperlink limit?
-
I have hyperlink that is more than 50 character when I specify it as the following to launch the outlook CString str_content = "click here"; ShellExecute( NULL, "Open", "mailto:my@domain.com?Body=" + str_content, NULL, NULL, SW_SHOWNORMAL ); If i have shorter str_content and I launch, I can see hyperlink in my outlook. However, if str_content becomes longer just text displayed in outlook content with all hyperlink code. How can i get the hyperlink in outlook when i have longer string. 777
-
I have hyperlink that is more than 50 character when I specify it as the following to launch the outlook CString str_content = "click here"; ShellExecute( NULL, "Open", "mailto:my@domain.com?Body=" + str_content, NULL, NULL, SW_SHOWNORMAL ); If i have shorter str_content and I launch, I can see hyperlink in my outlook. However, if str_content becomes longer just text displayed in outlook content with all hyperlink code. How can i get the hyperlink in outlook when i have longer string. 777
never mind i resolve the problem. I write to a email file ****.eml and launch the file. instead of handling everything in memory. Thanks 777