Yes, I checked :
the ip address that appears in the header seems to come from my web host
here is the code of my mailform:
// Send on submit of contactform
if (count($HTTP_POST_VARS) > 0) {
@set_time_limit(300);
$sm1 = new SmartMailer();
$sm1->checkVersion("1.01");
$sm1->smtpSetup("", "", "", "");
$sm1->component = "Sendmail";
$sm1->tmpFolder = "";
$sm1->embedImages = false;
$sm1->progressBar = "";
$sm1->ignore_errors = true;
$sm1->setFrom("floppy", "floppy@test.com");
$sm1->setTo("test", "test@test.com");
$sm1->setCc("", "");
$sm1->setBcc("", "");
$sm1->setSubject("Contactform");
// using static for body
$sm1->setBody_Static_text("langue: ".$_POST['lang']."\n\nDe la part de:\n\n".$_POST['Name']."\n".$_POST['email']."\n\ntel: ".$_POST['tel'].$_POST['message']."");
// Attachments none
$sm1->sendMail("one");
$GoTo = "messagesend.htm";
if (isset($HTTP_SERVER_VARS['QUERY_STRING'])) {
$GoTo .= (strpos($GoTo, '?')) ? "&" : "?";
$GoTo .= $HTTP_SERVER_VARS['QUERY_STRING'];
}
header(sprintf("Location: %s", $GoTo));
}
$SM_mailAction = getMailAction();
There is also an include php page that I uploaded here:
http://www.trustclip.com/86UO8D5E1QR4Le2P6DAMIDEUUOG
(I found that form in a PHP tutorial site and modified it to suit my own page. There are plenty of more advanced options in the include page (html templates, attachments) that I didn't use)
I hope this help 😉