Results 1 to 2 of 2
-
12th Nov 2011, 03:41 AM #1OPMember
how to modify or create an auto responder email in cpanel/whm
hi guys
i have a big question such a noob...like a customer after completing a payment for a shared web hosting account...how do i setup an auto responder email of new account information instantly sent to the customer...how and where to create or modify it in cpanel/whm and whmcs??crapking Reviewed by crapking on . how to modify or create an auto responder email in cpanel/whm hi guys i have a big question such a noob...like a customer after completing a payment for a shared web hosting account...how do i setup an auto responder email of new account information instantly sent to the customer...how and where to create or modify it in cpanel/whm and whmcs?? Rating: 5
-
12th Nov 2011, 07:55 AM #2MemberWebsite's:
facebook.comYou would get an answer much faster in google....
One way is to set it up in the email, for example a new user registers and an email goes to u and a cc or bcc to welcome@yoursite.com, u set up welcome@yoursite.com to auto reply all incoming emails and set some text as default. Set the email to delete all mails after some time so it doesnt get full.
Or.. u can use some type of script to fit ure needs.. for example:
PHP Code:<?php
$contact_name = $_POST['name'];
$contact_email = $_POST['email'];
$contact_subject = $_POST['subject'];
$contact_message = $_POST['message'];
if( $contact_name == true )
{
$sender = $contact_email;
$receiver = "myemailhost.com";
$client_ip = $_SERVER['REMOTE_ADDR'];
$email_body = "Name: $contact_name \nEmail: $sender \nSubject: $contact_subject \nMessage: $contact_message \nIP: $client_ip \nFrom Industrial Placement Website";
$extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion();
if( mail( $receiver, "Flash Contact Form - $subject", $email_body, $extra ) )
{
echo "success=yes";
}
else
{
echo "success=no";
}
}
// The Reply
$email = $_POST['email'];
$header = "myemail.com";
$subject = 'Submission'; // change subject
$message = 'This is a confirmation that we have recieved your message, and we will be in contact with you soon regarding your enquiry.
Thanks for your interest.
Bailey
'; // change text
mail($email, $subject, $message, 'From: '.$receiver.''); // send another one out
?>
Understand the spamming that can come out of ure site by doing this wrong. A simple ?THANK YOU? message can do the job...
All right everyone, line up alphabetically according to your height.
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
How to Get Subscribers to Your Email List - Create a Lead Magnet
By GarryField in forum Webmasters, Money MakingReplies: 0Last Post: 4th Mar 2014, 12:08 PM -
How to setup an auto-responder in cPanel
By Areon in forum Server ManagementReplies: 0Last Post: 1st Mar 2014, 04:07 PM -
How to create an email account in cPanel
By Areon in forum Server ManagementReplies: 0Last Post: 1st Mar 2014, 03:52 PM -
Xtreme Post Manager - Create/Manage/Modify Posts
By soft2050 in forum Webmaster ResourcesReplies: 62Last Post: 13th Aug 2011, 12:48 PM -
[Selling] CPA Email Submit/ZIP Auto Fill
By tw0 in forum Completed TransactionsReplies: 5Last Post: 9th Feb 2010, 09:06 PM
themaCreator - create posts from...
Version 3.24 released. Open older version (or...