I don't fully understand your question about where will the email come from.
When you create the email you can also do the following:
PHP Code:
$mailheaders = "From: $email_address1 <> \n";
$mailheaders .= "Reply-To: $email_address2\n\n";
mail($myemail, $subject, $message , $mailheaders);
$email_address1 & $email_address2 can be the same or hard coded, ie in ""
As to your second question, it depends on what they will use to respond, if by using the 'reply' function of their email or by a script. If by a script you can control what goes into the email.
Bookmarks