I am trying to add a feature into my webform that allows users to recieve text messages that confirm their web form submission... and I am kind of lost in doing so... Can someone guide me... I wasn't sucessful with google for the heads up....
<M/> 170 Why so serious? Featured Poster
Recommended Answers
Jump to PostYou can perform a redirect to a "success.php" page or turn to an error page. You can do this with header():
$to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); …
Jump to PostIf you have installed something like XAMPP, you could get SMTP with Mercury Mail:
All 7 Replies
cereal 1,524 Nearly a Senior Poster Featured Poster
<M/> 170 Why so serious? Featured Poster
vaultdweller123 32 Posting Pro
<M/> 170 Why so serious? Featured Poster
vaultdweller123 32 Posting Pro
<M/> 170 Why so serious? Featured Poster

diafol
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.