I think I have to study asp a little bit more. My knowledge of ASP is poor
but I could understand the script with the CDONTS code. If the examples that
wrong with my conception of CDOSYS. I think I have to buy a good book that
explains it all.
to help me. I am sorry if I gave that impression.
> Basr,
>
> People spoon fed you the info you need and you still don't get it.
> It is the info you need.
>
> You don't understand code so what makes you think you have any business
> deciding what is secure or not. It's real simple. Using CDOSYS you can add
> as much info to the email code as you like. It's like an ice cream at the
> local stand. You order it the way you want. If you want sprinkles you
frigin
> order them, the same as if you want to attach a file to the email or add a
> bcc. It is just lines of code you add. As for any other fields you have
they
> HAVE JACK to do with the functionality of the email sending code. You
> obviously have to take the information you have and prep it to be used in
> the body of the email. You build a string. It's basic stuff. As for
sending
> an email using POP3 SMTP Authentication make a special email account jsut
> for that if you are worried about the email password being used in the
code.
>
> arrrgggg...
>
>
>
> "Basr" <mokbck@hetnet.nl> wrote in message
> news:45954b7a$0$11825$ba620dc5@text.nova.planet.nl...
> >
> > "Egbert Nierop (MVP for IIS)" <egbert_nierop@nospam.invalid> schreef in
> > bericht news:%23hewhI1KHHA.536@TK2MSFTNGP02.phx.gbl...
> >>
> >> "Basr" <mokbck@hetnet.nl> wrote in message
> >> news:45951cfc$0$3240$ba620dc5@text.nova.planet.nl...
> >> >
> >> > "Egbert Nierop (MVP for IIS)" <egbert_nierop@nospam.invalid> schreef
in
> >> > bericht news:um6x5gqKHHA.536@TK2MSFTNGP02.phx.gbl...
> >> >>
> >> >> "Basr" <mokbck@hetnet.nl> wrote in message
> >> >> news:4593e6f7$0$13606$ba620dc5@text.nova.planet.nl...
> >> >> > Thanks Mike, it will take six weeks to find what I'm looking for!
> >> >> >
> >> >> > Marcel
> >> >> >
> >> >>
> >>
> >
> >
> >>
> >> Public Sub SendMail(vFrom, vTo, vSubject, vCc)
> >> Dim cdoConfig, mail, sch
> >> Set cdoConfig = CreateObject("CDO.Configuration")
> >> Set mail = CreateObject("CDO.Message")
> >>
> >> sch = "
http://schemas.microsoft.com/cdo/configuration/" > >> with cdoConfig.fields
> >> .item(sch + "sendpassword").value ="piet1234_"
> >> .item(sch + "sendusername").value = "yourmailaddresscomeshere"
> >> .item(sch + "smtpauthenticate").value = 1 'cdoBasic
> >> .item(sch + "sendusing").value = 2 'cdoSendUsingPort
> >> .item(sch + "smtpserver").value = "the IP or hostname of your
SMTP
> >> server here"
> >> .Update()
> >> End With
> >> Set mail.Configuration = cdoConfig
> >> If IsArray(vSubject) Then
> >> mail.Subject = vSubject(0)
> >> mail.TextBody = vSubjEct(1)
> >> Else
> >> mail.Subject = Left(vSubject, 255)
> >> mail.TextBody = vSubject
> >> End If
> >> mail.to = vTo
> >> mail.From = vFrom
> >> If not isempty(vCc) Then mail.Cc = vCc
> >>
> >> mail.Send
> >> End Sub
> >>
> >>
> >> --
> >> compatible web farm Session replacement for Asp and Asp.Net
> >>
http://www.nieropwebconsult.nl/asp_session_manager.htm > >>
> >
> >
> > Egbert
> >
> > I saw that in this script my password is required and I think that' s
too
> > dagerous. The script is not entirely what I meant because it only deals
> > with
> > the usual parts of an email message (To, From etc.). I have the
impression
> > that the script does not deal with other input fields. I am looking for
an
> > example that sends the input from a simple form to my emailadres.
Example
> > fields are; Name, Email, BrandCar. Build, Color; CNumber, Location, etc.
I
> > want the input from this fields in the email.
> >
> > In the past I found a provider (which is not mine) that gave an example
> > for
> > this purpose but it was with CDONTS. I could use as many variables as I
> > wanted, the script could handle everything. My own provider removed
CDONTS
> > unexpectedly. It does not offer examples att all. I tried many examples
> > from
> > the internet but not one of them can do what I need.
> > I have to look a little further I suppose.
> > Thanks for your help
> > Marcel
> >
> >
>
>
>