I have posted the following mail.php file to my website:
Here is my input and HTTP.submit:Code:<?php // send our email mail ("$to","$subject","$body","$from"); ?>
[CODE]-- Get values from input fields
name = Input.GetText("name");
email_address = Input.GetText("email_address");
email_subject = Input.GetText("subject");
message = Input.GetText("message");
from = noreply@domain.com;
to = email@domain.com;
Code:-- body of email message body = "Name: "..name.."\r\nEmail Address: "..email_address.."\r\nMessage: "..message.."; -- subject line of email message subject = ..email_subject; -- submit message to mail.php HTTP.Submit("http://www.domain.com/mail.php,(to=to,subject=subject,body=body,from=from), _POST, 20, 80, nil, nil);
The "From" shows up in the body of the email as opposed to the "From (Sender)". Can someone help with the mail.php script, please?


