This topic is locked

email to the email Adresse in the AddNew Form

4/17/2007 3:29:59 PM
PHPRunner General questions
S
susoft author

I can send a email with the AddForm Data to a predefined email Adresse but I can't do this to the email Adress in the AddForm Data, please how can i extract this email adreese for mail to this.

code that works: $email = "webmaster@susoft.net";

code from AddForm: $useremail = $value["field7"]; (don't work)

Any hint, please

with kind regards, Andreas from Switzerland

J
Jane 4/18/2007

Andreas,
try to use following code:

$email = $values["EmailField"];



where EmailField is your actual field name where email is stored.

Please note field names are case sensitive here.

S
susoft author 4/23/2007

Thanks this work's
Andreas