why I cant add string to the body of mail:
?Code:LAN = System.GetLANInfo(); user = System.GetLANInfo().User; File.OpenEmail("user@yourdomain.com?&Subject=test&Body=..user..", SW_SHOWNORMAL);
Professional Software Development Tools
why I cant add string to the body of mail:
?Code:LAN = System.GetLANInfo(); user = System.GetLANInfo().User; File.OpenEmail("user@yourdomain.com?&Subject=test&Body=..user..", SW_SHOWNORMAL);
try this
Code:LAN = System.GetLANInfo(); user = System.GetLANInfo().User; File.OpenEmail("user@yourdomain.com?&Subject=test&Body="..user, SW_SHOWNORMAL);
Open your eyes to Narcissism, Don't let her destroy your life!!
works, thx
but how to change to add string to the topic of mail?
Code:File.OpenEmail("user@yourdomain.com?&Subject="..date.."&Body="..user , SW_SHOWNORMAL);
Open your eyes to Narcissism, Don't let her destroy your life!!