having 2 from emails

Home Forums Quform WordPress having 2 from emails

This topic is: not resolved
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #11853
    DGSjmonkhouse
    Participant

    Hello Ally,

    Thank you for all the help. I thought I would start another post for this question.
    I have a forum that I would like to have 2 From addresses in the email if the second field is filled out.

    I tried this but it stopped emails from sending….


    function my_autoreply_recipients($mailer, $form, $attachments)
    {
    // Additional autoreply recipient email
    $email = $form->getValue('iphorm_2_6');

    if ($email) {
    $mailer->AddAddress($email);
    $mailer->From = $email;
    }

    return $mailer;
    }
    add_filter(‘iphorm_pre_send_notification_email_2’, ‘my_autoreply_recipients’, 10, 3);

     

    thank you 🙂

     

    #11864
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #11884
    DGSjmonkhouse
    Participant

    Hi,

    I did not think of that. How about a CC? I see in the settings that there is a To and a BCC but no CC.

    Could that be added? or I add it?

    thanks,

    John

    #11901
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

    #11972
    DGSjmonkhouse
    Participant

    Hello Ally,

    I am still having problems with the emails not sending.


    function my_custom_CC_email($mailer, $form, $attachments)
    {
    $email = $form->getValue('iphorm_2_6');
    if ($email) {
    $mailer->AddCC($email);
    }
    return $mailer;
    }
    add_filter('iphorm_pre_send_notification_email_2', 'my_custom_CC_email', 10, 3);

    Thanks for the help.

    #11993
    Ally
    Support Staff

    You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.
Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy