Use global WP-setting as mailadress for conditional mailing

Home Forums Quform WordPress Use global WP-setting as mailadress for conditional mailing

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

    Hi,

    Love QUforms, great product. I think I have a somewhat strange use-case, which requires me to do some customization. I want to to use the conditional mailing setting of a form, to send it to a different mailadress depending on a form-value (3 options). So far so good, no problem there.

    Now I want to replace those 3 mailadresses with a WordPress-setting, so that my users can change the adresses easily from a custom settings-page. Where is the PHP-code that deals with the conditional mailing, and if your willing to help, how can I change this to use a WP-setting.

    The setting can be accessed from everywhere using the function get_option( “test_setting” );

    Thanks!

    #8297
    Clock1932
    Participant

    Fixed it. Changed includes/common.php (line 701)

    //$recipients[] = $rule['recipient'];

    if ($rule['recipient'] == "A@dummy.nl") {
    $recipients[] = kc_get_option("AH", "mail", "mail_vk");
    }
    if ($rule['recipient'] == "B@dummy.nl") {
    $recipients[] = kc_get_option("AH", "mail", "mail_va");
    }
    if ($rule['recipient'] == "C@dummy.nl") {
    $recipients[] = kc_get_option("AH", "mail", "mail_v");
    }
    if ($rule['recipient'] == "Plaza@dummy.nl") {
    $recipients[] = kc_get_option("AH", "mail", "mail_plaza");
    }

    #8300
    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.

    #8305
    Clock1932
    Participant

    Thanks. There is probably no way to do this from the theme functions.php I assume?

    #8306
    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.

    #8313
    Clock1932
    Participant

    Great. Thanks for the great support!

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