Viewing 3 replies - 1 through 3 (of 3 total)
  • same here. is there a way to send out multiple notifications?

    Plugin Author Nick Ciske

    (@nickciske)

    Not at present, but I can add that when I do the next round of bug fixes.

    Plugin Author Nick Ciske

    (@nickciske)

    In 2.0.1 I’ve added a filter to modify this (UI changes will have to wait for a different release).

    Once you’ve upgraded, adding this to your functions.php file (make sure to change the email addresses) will add emails to the distribution list. You can add as many as you want and each will get an admin notification email.

    add_filter('salesforce_w2l_cc_admin_email_list','salesforce_add_emails');
    
    function salesforce_add_emails( $emails ){
    
    $emails[]='[email protected]';
    $emails[]='[email protected]';
    $emails[]='[email protected]';
    
    return $emails;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WordPress-to-lead for Salesforce CRM] Send Multiple Email Notifications?’ is closed to new replies.