Contact
You can find more of new friends in our website. Submit your email below contact form.
Send us mail
SMTPDebug = SMTP::DEBUG_SERVER; // for detailed debug output $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->Username = 'jackdaniel@smsboxs.com'; // YOUR gmail email $mail->Password = 'pkmdbdwnvwtfaill'; // YOUR gmail password // Sender and recipient settings $mail->setFrom('jackdaniel@smsboxs.com', 'smsboxs'); $mail->addAddress($email, $name, $message); $mail->addReplyTo('jackdaniel@smsboxs.com', 'smsboxs'); // to set the reply to // Setting the email content $mail->IsHTML(true); $mail->Subject = "Contact Replay [Success]"; $mail->Body = "Thank you for Contact us.
This e-mail was sent from smsboxs
"; $mail->AltBody = "This is the plain text version of the email content"; if(!$mail->send()) { echo "Success! check sometimes later."; } else { echo "Success! check your email."; } $mail2 = new PHPMailer(true); // Server settings //$mail2->SMTPDebug = SMTP::DEBUG_SERVER; // for detailed debug output $mail2->isSMTP(); $mail2->Host = 'smtp.gmail.com'; $mail2->SMTPAuth = true; $mail2->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail2->Port = 587; $mail2->Username = 'jackdaniel@smsboxs.com'; // YOUR gmail email $mail2->Password = 'pkmdbdwnvwtfaill'; // YOUR gmail password // Sender and recipient settings $mail2->setFrom('jackdaniel@smsboxs.com', 'smsboxs'); $mail2->addAddress('jackdaniel@smsboxs.com', 'smsboxs'); //$mail->addReplyTo('jackdaniel@smsboxs.com', 'smsboxs'); // to set the reply to // Setting the email content $mail2->IsHTML(true); $mail2->Subject = "Contact Details"; $mail2->Body = "Following user has been submitted contact details on your websiteName : $name
Email : $email
Message : $message
"; //$mail->AltBody = "This is the plain text version of the email content"; $mail2->send(); } } ?>
