|
-
Feb 23rd, 2001, 07:58 AM
#1
Thread Starter
Lively Member
Hi!!
I try to send an mail with an file attachment!
Anyone knew the correct line to add an attachment to the mail?
sMail = "mailto:[email protected]%[email protected] &subject=Subject line &body=Mail body!"
nResult = ShellExecute(0, "open", sMail, 0, 0, 1)
-
Feb 23rd, 2001, 08:07 AM
#2
Lively Member
Friend,
Please refer Articles section to know more about mail with attachment. It includes Demo project and exe also.
Thanx and Best of luck.
-
Feb 23rd, 2001, 10:32 AM
#3
Hyperactive Member
try using this
Code:
Dim sMail As String
Dim nResult As Long
sMail = "mailto:[email protected]%[email protected] &subject=Subject line &body=Mail body!"
nResult = ShellExecute(Me.hwnd, "open", sMail, "", App.Path, 1)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|