CodeCharge Studio
search Register Login  

Visual PHP Web Development

Visually Create Internationalized Web Applications, Web Reports, Calendars, and more.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeCharge.Discussion

 Transferring Content to Mailform

Print topic Send  topic

Author Message
Pat
Posted: 03/09/2001, 6:37 AM

I would like to pass Database Content to a Mailform.
The Idea: I have a customer Registration Form which stores name, address,
email, loginname and password in
a mysql database.

Now I would like to create a information mail for the customer to tell him
his login and passwort using the database.

How could I do this using cc.

Patrick

Joachim Uersfeld
Posted: 03/09/2001, 6:54 AM

You can do this in Form / Properties / AfterInsert.

My Script for NT:

Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = "myCustomer@xvz.com"
objCDO.From =myEmailAdr@xyz.com
objCDO.Subject = "Your Account"
objCDO.Body = "My Information for you ... "
objCDO.MailFormat = 0
objCDO.Send
Set objCDO = Nothing

Joachim


"Pat" <pat@heuber.de> schrieb im Newsbeitrag
news:98apr7$gsj$1@mail.tankhill.com...
> I would like to pass Database Content to a Mailform.
> The Idea: I have a customer Registration Form which stores name, address,
> email, loginname and password in
> a mysql database.
>
> Now I would like to create a information mail for the customer to tell him
> his login and passwort using the database.
>
> How could I do this using cc.
>
> Patrick
>
>


   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

Web Database

Join thousands of Web developers who build Web applications with minimal coding.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.