asp_cdo thread: Re: CDONTS Attach File
set objMailer = Server.CreateObject("CDONTS.NewMail")
With objMailer
.MailFormat = CdomailFormatMIME
.From = frm
.To = too
.Subject = subj
.Cc = cc
.Bcc = bcc
.Body = body
.AttachFile <attachment>,"Attached"
End If
.Send
End With
End If
Set objMailer = Nothing
|





