|
 |
asp_cdo thread: Attach file ASP & CDO
Message #1 by "ji" <ji_mminm@h...> on Wed, 6 Feb 2002 17:39:56
|
|
Hello
IŽd like to know how can i attach a file to a CDO message object that
resides on the client.
The user should connect to the server where the CDO is , and send a file
through an ASP page. The file should be attached to the CDO message object
that the user is sending.
Thanks
ji_mminm@h...
Message #2 by "srikieat" <srikieat@y...> on Fri, 22 Feb 2002 03:06:06
|
|
Hi..,
set ObjNewMessage = objsession.OutBox.Messages.Add
set objAttach = objNewmessage.Attachments.Add
with objAttach
.Type = 1
.Source = StrFilePaht
end with
objNewMessage.Update
> Hello
>
> IŽd like to know how can i attach a file to a CDO message object that
> resides on the client.
>
> The user should connect to the server where the CDO is , and send a file
> through an ASP page. The file should be attached to the CDO message
object
> that the user is sending.
>
> Thanks
>
> ji_mminm@h...
|
|
 |