1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How To Send a Confirmation Email To User Email Address

Discussion in 'PHP' started by paul_whiting09, May 10, 2015.

  1. #1
    Hello I have a newsletter form that I would like to add coding too which once the user has filled in there information and submitted the form it sends them a confirmation email to there email address with some text. How would I go about adding that in. Here is the code for the mail.

    
    $myMessage = $myNameLabel .' '. $_POST["m_name".$unique_id].', '.
    $myEmailLabel .' '. $_POST["m_email".$unique_id].', '.
    date("r");
    
    $mailSender =&JFactory::getMailer();
    $mailSender->addRecipient($recipient);if($sendingWithSetEmail){
    $mailSender->setSender(array($fromEmail,$fromName));}else{
    $mailSender->setSender(array($_POST["m_email".$unique_id],$_POST["m_name".$unique_id]));}
    
    $mailSender->setSubject($subject);
    $mailSender->setBody($myMessage);
    
    if(!$mailSender->Send()){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">'. $errorText .'</span></div>';print $myReplacement;}
    
    Code (markup):
    Thanks for any help given. If you would like the full code let me know and I will paste it in.
     
    paul_whiting09, May 10, 2015 IP
  2. Anveto

    Anveto Well-Known Member

    Messages:
    697
    Likes Received:
    40
    Best Answers:
    19
    Trophy Points:
    195
    #2
    Just do the same thing again but flip the sender and receiver. Then change the message.
     
    Anveto, May 10, 2015 IP
  3. paul_whiting09

    paul_whiting09 Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    
    $myMessage = $myNameLabel . ' ' . $_POST["m_name".$unique_id] . ', ' .
                     $myEmailLabel . ' ' . $_POST["m_email".$unique_id] . ', ' .
                     date("r");
    
        $mailReceiver = &JFactory::getMailer();
        $mailReceiver->addRecipient($recipient);
        if ($sendingWithSetEmail) {
          $mailReceiver->setSender(array($fromEmail,$fromName));
        }
        else {
          $mailReceiver->setSender(array($_POST["m_email".$unique_id],$_POST["m_name".$unique_id]));
        }
    
        $mailReceiver->setSubject($subject);
        $mailReceiver->setBody($myMessage);
    
    Code (markup):
    Just tried but it's still not working. Must be doing something wrong.
     
    paul_whiting09, May 10, 2015 IP
  4. Anveto

    Anveto Well-Known Member

    Messages:
    697
    Likes Received:
    40
    Best Answers:
    19
    Trophy Points:
    195
    #4
    
    $myMessage = $myNameLabel .' '. $_POST["m_name".$unique_id].', '.
    $myEmailLabel .' '. $_POST["m_email".$unique_id].', '.
    date("r");
    
    $mailSender =&JFactory::getMailer();
    $mailSender->addRecipient($recipient);if($sendingWithSetEmail){
    $mailSender->setSender(array($fromEmail,$fromName));}else{
    $mailSender->setSender(array($_POST["m_email".$unique_id],$_POST["m_name".$unique_id]));}
    
    $mailSender->setSubject($subject);
    $mailSender->setBody($myMessage);
    
    if(!$mailSender->Send()){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">'. $errorText .'</span></div>';print $myReplacement;
    }
    
    $myMessage2 = "Confirmation email";
    
    $mailSender2 =&JFactory::getMailer();
    if($sendingWithSetEmail){
        $mailSender2->addRecipient($fromEmail);
    }else{
        $mailSender2->addRecipient($_POST["m_email".$unique_id]);
    }
    $mailSender2->setSender(array($recipient,"Some company"));
    
    $mailSender2->setSubject($subject);
    $mailSender2->setBody($myMessage2);
    
    if(!$mailSender2->Send()){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">'. $errorText .'</span></div>';print $myReplacement;
    }
    
    
    PHP:
    Try something like that. It should send both an email to you I guess and it should also send a confirmation back to the sender.
     
    Anveto, May 10, 2015 IP
  5. paul_whiting09

    paul_whiting09 Greenhorn

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #5
    Thanks for all your help but still not having much luck. My full code is below. It sends fine to my email address but doesn't send anything to the recipient.

    
    <?php
    // no direct accessdefined('_JEXEC')ordie('Restricted access');
    
    $myNameLabel = $params->get('name_label','Name:');
    $myEmailLabel = $params->get('email_label','Email:');
    
    $recipient = $params->get('email_recipient','');
    
    $buttonText = $params->get('button_text','Subscribe to Newsletter');
    $errorText = $params->get('errot_text','Your subscription could not be submitted. Please try again.');
    
    $subject = $params->get('subject','New subscription to your site!');
    $fromName = $params->get('from_name','Newsletter Subscriber');
    $fromEmail = $params->get('from_email','newsletter_subscriber@yoursite.com');
    $sendingWithSetEmail = $params->get('sending_from_set',true);
    
    $noName = $params->get('no_name','Please write your name');
    $noEmail = $params->get('no_email','Please write your email');
    $invalidEmail = $params->get('invalid_email','Please write a valid email');
    
    $nameWidth = $params->get('name_width','12');
    $emailWidth = $params->get('email_width','12');
    $buttonWidth = $params->get('button_width','100');
    
    $saveList = $params->get('save_list',true);
    $savePath = $params->get('save_path','mailing_list.txt');
    
    $mod_class_suffix = $params->get('moduleclass_sfx','');
    
    $addcss = $params->get('addcss','div.modns tr, div.modns td { border: none; padding: 3px; }');
    
    $thanksTextColor = $params->get('thank_text_color','#000000');
    $errorTextColor = $params->get('error_text_color','#000000');
    $pre_text = $params->get('pre_text','');
    
    $disable_https = $params->get('disable_https',true);
    
    $exact_url = $params->get('exact_url',true);if(!$exact_url){
    $url = JURI::current();}else{if(!$disable_https){
    $url =(!empty($_SERVER['HTTPS']))?"https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']:"http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];}else{
    $url ="http://newrealestate.properties/buy-now-related/newsletter-thankyou.html";}}
    
    $fixed_url = $params->get('fixed_url',true);if($fixed_url){
    $url = $params->get('fixed_url_address',"");}
    
    $url = htmlentities($url, ENT_COMPAT,"UTF-8");
    
    $unique_id = $params->get('unique_id',"");
    
    $enable_anti_spam = $params->get('enable_anti_spam',true);
    $myAntiSpamQuestion = $params->get('anti_spam_q','How many eyes has a typical person? (ex: 1)');
    $myAntiSpamAnswer = $params->get('anti_spam_a','2');
    
    $myError ="";
    $errors =3;
    
    if(isset($_POST["m_name".$unique_id])){
    $errors =0;if($enable_anti_spam){if($_POST["modns_anti_spam_answer".$unique_id]!= $myAntiSpamAnswer){
    $myError ='<span style="color: '.$errorTextColor.';">'.JText::_('Wrong anti-spam answer').'</span><br/>';}}if($_POST["m_name".$unique_id]===""){
    $myError = $myError .'<span style="color: '.$errorTextColor.';">'. $noName .'</span><br/>';
    $errors = $errors +1;}if($_POST["m_email".$unique_id]===""){
    $myError = $myError .'<span style="color: '.$errorTextColor.';">'. $noEmail .'</span><br/>';
    $errors = $errors +2;}
    
    if($myError ==""){
    
    $myMessage = $myNameLabel .' '. $_POST["m_name".$unique_id].', '.
    $myEmailLabel .' '. $_POST["m_email".$unique_id].', '.
    date("r");
    
    $mailSender =&JFactory::getMailer();
    $mailSender->addRecipient($recipient);if($sendingWithSetEmail){
    $mailSender->setSender(array($fromEmail,$fromName));}else{
    $mailSender->setSender(array($_POST["m_email".$unique_id],$_POST["m_name".$unique_id]));}
    
    $mailSender->setSubject($subject);
    $mailSender->setBody($myMessage);
    
    if(!$mailSender->Send()){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">'. $errorText .'</span></div>';print $myReplacement;
    }
    
    $myMessage2 = "Confirmation email";
    
    $mailSender2 =&JFactory::getMailer();
    if($sendingWithSetEmail){
    $mailSender2->addRecipient($fromEmail);
    }else{
    $mailSender2->addRecipient($_POST["m_email".$unique_id]);
    }
    $mailSender2->setSender(array($recipient,"Some company"));
    
    $mailSender2->setSubject($subject);
    $mailSender2->setBody($myMessage2);
    
    if(!$mailSender2->Send()){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">'. $errorText .'</span></div>';print $myReplacement;
    }
    else{
    $myReplacement ='<div class="modns"><span style="color: '.$thanksTextColor.';">'. $pageText .'</span></div>';print $myReplacement;}if($saveList){
    $file = fopen($savePath,"a");
    fwrite($file, utf8_encode($_POST["m_name".$unique_id]." (".$_POST["m_email".$unique_id]."); "));
    fclose($file);}returntrue;}}
    
    if($recipient ===""){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">No recipient specified</span></div>';print $myReplacement;returntrue;}
    
    if($recipient ==="email@email.com"){
    $myReplacement ='<div class="modns"><span style="color: '.$errorTextColor.';">Mail Recipient is specified as email@email.com.<br/>Please change it from the Module parameters.</span></div>';print $myReplacement;returntrue;}
    
    if($myError !=""){print $myError;}
    
    print'<style type="text/css"><!--'. $addcss .'--></style>';print'<div class="modns"><form action="'. $url .'" method="post">'."\n".'<div class="modnsintro">'.$pre_text.'</div>'."\n";print'<table>';if($enable_anti_spam){print'<tr><td colspan="2">'. $myAntiSpamQuestion .'</td></tr><tr><td></td><td><input class="modns inputbox '. $mod_class_suffix .'" type="text" name="modns_anti_spam_answer'.$unique_id.'" size="'. $nameWidth .'"/></td></tr>'."\n";}print'<tr><td>'. $myNameLabel .'</td><td><input class="modns inputbox '. $mod_class_suffix .'" type="text" name="m_name'.$unique_id.'" size="'. $nameWidth .'"';if(($errors &1)!=1){print' value="'.htmlentities($_POST["m_name".$unique_id], ENT_COMPAT,"UTF-8").'"';}print'/></td></tr>'."\n";print'<tr><td>'. $myEmailLabel .'</td><td><input class="modns inputbox '. $mod_class_suffix .'" type="text" name="m_email'.$unique_id.'" size="'. $emailWidth .'"';if(($errors &2)!=2){print' value="'.htmlentities($_POST["m_email".$unique_id], ENT_COMPAT,"UTF-8").'"';}print'/></td></tr>'."\n";print'<tr><td colspan="2"><input class="modns button '. $mod_class_suffix .'" type="image" src="images/subscribe3.png" /></td></tr></table></form></div>'."\n";returntrue;
    
    Code (markup):
     
    paul_whiting09, May 10, 2015 IP
  6. pmf123

    pmf123 Notable Member

    Messages:
    1,447
    Likes Received:
    75
    Best Answers:
    0
    Trophy Points:
    215
    #6
    have you checked their spam folder? its possible its working fine and just stuck in there
     
    pmf123, May 13, 2015 IP
  7. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
    #7
    Also, be aware that if you're sending from a host that has not been set up as a verified mail-server, and you're sending to hotmail/outlook-mails, they might not arrive at all - you might get a response in the mail-log, though, saying that the message could not be relayed to the recipient.
     
    PoPSiCLe, May 13, 2015 IP