Hi.
I have the following code to send an e-mail using the ShellExecute Procedure:
Does anyone know how I can manipulate this code so that the message is automatically sent without it being shown?
Thanks.
British
I have the following code to send an e-mail using the ShellExecute Procedure:
Code:
ShellExecute(Self.Handle,
nil,
'mailto:' +
'paubri@michaelhouse.org' +
'?Subject=Test Message Subject' +
'&Body=Test Message Body' +
'&Attach="c:\Mail Attachments\attachment.txt"',
nil,
nil,
SW_NORMAL);
Does anyone know how I can manipulate this code so that the message is automatically sent without it being shown?
Thanks.
British