Jump to content

bumpn

New Members
  • Posts

    2
  • Joined

  • Last visited

bumpn's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. sry i mean when i say home server is its a server that is hosted in someones home. not my actually machine or my house
  2. This mailer works with go daddy but I cant get it too work with a home server. It will send the mail and shows up in the inbox but not the content. I think it has to do with using $body tag but I am not sure any suggestions? <?php // PHPmailer settings $mail = new PHPMailer(); // create a new object $mail->Issmtp(); // enable SMTP $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail $mail->Host = 'smtp.gmail.com'; $mail->Port = 465; $mail->Username = "email"; // SMTP username $mail->Password = "password"; // SMTP password $mail->From = $email; $mail->FromName = $contact_name; $mail->SetFrom($email, $contact_name); $mail->AddAddress('email'); $mail->Priority = 1; $mail->WordWrap = 50; // set word wrap $mail->IsHTML(true); // send as HTML $mail->Subject = "Gray Gables maintenance request"; $mail->Body = $body; $mail->AltBody = "This is the text-only body"; // gets info from form $name = $_POST['name'] ; $email = $_POST['email'] ; $phone = $_POST['phone'] ; $message = $_POST['message'] ; $ip = $_SERVER['REMOTE_ADDR']; // defines how message looks in email $mail->Body=" Name: $name<br> Telephone: $phone<br> Email: $email<br> IP address: $ip <br> -------------------<br> Message:<br> $message"; // looks good in your inbox $mail->From = "$email"; $mail->FromName = "$name"; $mail->AddReplyTo("$email","$name"); // gives success or error if(!$mail->Send()) { echo 'Message could not be sent.'; echo 'Mailer Error: ' . $mail->ErrorInfo; exit; } echo ' <meta http-equiv="refresh" content="3;url=http/"> <center><font size="5px"> Message has been sent!!<br> you will be redirected to our home page in 3 seconds...<br> <a href="http">click here</a> to return now. </font> </center> '; ?> <?php echo ' Client IP: '; if ( isset($_SERVER["REMOTE_ADDR"]) ) { echo '' . $_SERVER["REMOTE_ADDR"] . ' '; } else if ( isset($_SERVER["HTTP_X_FORWARDED_FOR"]) ) { echo '' . $_SERVER["HTTP_X_FORWARDED_FOR"] . ' '; } else if ( isset($_SERVER["HTTP_CLIENT_IP"]) ) { echo '' . $_SERVER["HTTP_CLIENT_IP"] . ' '; } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.