0

我的网站上有一个表格,用户可以在其中请求信息,但有一个问题。在表单内我有一个复选框,当用户选择它时,必须将电子邮件发送到另一个地方。(见截图)

在此处输入图像描述

在此处输入图像描述

发生的事情是:当两个规则匹配时,重力形式会发送两封电子邮件,但我只想根据优先级发送一封电子邮件。我怎样才能做到这一点?

4

1 回答 1

2

我不相信路由会考虑各个规则的 AND 条件。

但是,您可以在发送电子邮件之前使用以下过滤器对电子邮件进行进一步修改:

add_filter("gform_notification", "my_custom_function", 10, 3);

或者,对于特定形式(即 id = 42):

add_filter("gform_notification_42", "my_custom_function", 10, 3);

来源:http ://www.gravityhelp.com/documentation/page/Gform_notification

更新

访问字段的示例如下所示:

add_filter('gform_notification_42', 'updateNotificationForForm42', 10, 3);
function updateNotificationForForm42( $notification, $form, $entry ) {
    $fields = $form['fields'];
    foreach( $fields as $field ) {
        // Here you need to provide the field with some kind of identifying mark (e.g., Admin Label).  
        // Below assumes the field you're interested in has an admin label of 'Test Me'
        if( $field['adminLabel'] == 'Test Me' ) {
            $fieldValue = rgpost("input_{$field['id']}");
        }
    }
}

Gravity Forms开发人员文档有很多关于如何通过操作/过滤器进行自定义的示例。

另请参阅:http: //www.gravityhelp.com/documentation/page/Fields

于 2013-08-22T18:51:53.020 回答