Thanks,
Wayne
Because the fields are delimited ('?' and '&'), embedded spaces shouldn't be
a problem.
ShellExecute(Handle, 'open',
'mailto:som...@somewhere.net' +
'?cc=aaa@bbb' +
'&bcc=xxx@yyy' +
'&subject=This is the subject' +
'&body=This is the body',
nil, nil, sw_Normal);
--
Wayne Niddery - WinWright Consulting
I'm a Daddy! Curtis Tomoki Niddery, born Oct 29, 1999
RADBooks - http://members.home.net/wniddery/
Thanks.
Now, I'd like to include in the body a mailto link so that user can just
click on it and have an email already addressed and with the appropriate
subject. The best I can accomplish is to get the first word in the
subject line ie "mailto:xxx@yyy?subject=This is a test" gets me an email
with a subject of "This" when I click on the resultant link.
Thanks, Wayne
"Wayne Niddery (TeamB)" wrote:
> I'm a Daddy! Curtis Tomoki Niddery, born Oct 29, 1999
Congratulations!
Thanks Al. I had tried everything but that "20" after the "%".
Wayne