Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a code for an automatic reply email. I can't get it to work, can someone tell me what's wrong with my commands? Php code

Write a code for an automatic reply email. I can't get it to work, can someone tell me what's wrong with my commands?

Php code

// Define some constants

define( "RECIPIENT_NAME", "David Chandler" );

define( "RECIPIENT_EMAIL", "desiree@yahoo.com" );

define( "EMAIL_SUBJECT", "Message from Website" );

// Read the form values

$success = false;

$senderName = isset( $_POST['senderName'] ) ? preg_replace( "/[^\.\-\' a-zA-Z0-9]/", "", $_POST['senderName'] ) : "";

$senderEmail = isset( $_POST['senderEmail'] ) ? preg_replace( "/[^\.\-\_\@a-zA-Z0-9]/", "", $_POST['senderEmail'] ) : "";

$message = isset( $_POST['message'] ) ? preg_replace( "/(From:|To:|BCC:|CC:|Subject:|Content-Type:)/", "", $_POST['message'] ) : "";

// If all values exist, send the email

if ( $senderName && $senderEmail && $message ) {

$recipient = RECIPIENT_NAME . " <" . RECIPIENT_EMAIL . ">";

$headers = "From: " . $senderName . " <" . $senderEmail . ">";

$success = mail( $recipient, EMAIL_SUBJECT, $message, $headers );

}

// Return an appropriate response to the browser

if ( isset($_GET["ajax"]) ) {

echo $success ? "success" : "error";

} else {

?>

Thanks!

Thanks for sending your message! We'll get back to you shortly.

" ?>

There was a problem sending your message. Please try again.

" ?>

}

?>

and here is my html/css coding.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Semantics Of A Networked World Semantics For Grid Databases First International Ifip Conference Icsnw 2004 Paris France June 2004 Revised Selected Papers Lncs 3226

Authors: Mokrane Bouzeghoub ,Carole Goble ,Vipul Kashyap ,Stefano Spaccapietra

2004 Edition

3540236090, 978-3540236092

More Books

Students also viewed these Databases questions