Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_cdo thread: Re: CDONTS Attach File


Message #1 by mrbharat_80@y... on Fri, 17 May 2002 12:18:59
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

  Return to Index