C:\xampp\htdocs\landing\wp-content\plugins\contact-form-7\modules\sendinblue\sendinblue.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php

include_once path_join(
    
WPCF7_PLUGIN_MODULES_DIR,
    
'sendinblue/service.php'
);

include_once 
path_join(
    
WPCF7_PLUGIN_MODULES_DIR,
    
'sendinblue/contact-form-properties.php'
);


add_action'wpcf7_init''wpcf7_sendinblue_register_service'1);

function 
wpcf7_sendinblue_register_service() {
    
$integration WPCF7_Integration::get_instance();

    
$integration->add_service'sendinblue',
        
WPCF7_Sendinblue::get_instance()
    );
}


add_action'wpcf7_submit''wpcf7_sendinblue_submit'10);

function 
wpcf7_sendinblue_submit$contact_form$result ) {
    if ( 
$contact_form->in_demo_mode() ) {
        return;
    }

    
$service WPCF7_Sendinblue::get_instance();

    if ( ! 
$service->is_active() ) {
        return;
    }

    if ( empty( 
$result['posted_data_hash'] ) ) {
        return;
    }

    if ( empty( 
$result['status'] )
    or ! 
in_array$result['status'], array( 'mail_sent''mail_failed' ) ) ) {
        return;
    }

    
$submission WPCF7_Submission::get_instance();

    
$consented true;

    foreach ( 
$contact_form->scan_form_tags'feature=name-attr' ) as $tag ) {
        if ( 
$tag->has_option'consent_for:sendinblue' )
        and 
null == $submission->get_posted_data$tag->name ) ) {
            
$consented false;
            break;
        }
    }

    if ( ! 
$consented ) {
        return;
    }

    
$prop wp_parse_args(
        
$contact_form->prop'sendinblue' ),
        array(
            
'enable_contact_list' => false,
            
'contact_lists' => array(),
            
'enable_transactional_email' => false,
            
'email_template' => 0,
        )
    );

    if ( ! 
$prop['enable_contact_list'] ) {
        return;
    }

    
$attributes wpcf7_sendinblue_collect_parameters();

    if ( empty( 
$attributes['EMAIL'] ) and empty( $attributes['SMS'] ) ) {
        return;
    }

    
$contact_id $service->create_contact( array(
        
'email' => $attributes['EMAIL'],
        
'attributes' => (object) $attributes,
        
'listIds' => (array) $prop['contact_lists'],
    ) );

    if ( ! 
$contact_id ) {
        return;
    }

    if ( ! 
$prop['enable_transactional_email'] or ! $prop['email_template'] ) {
        return;
    }

    
$service->send_email( array(
        
'templateId' => absint$prop['email_template'] ),
        
'to' => array(
            array(
                
'name' => sprintf(
                    
'%1$s %2$s',
                    
$attributes['FIRSTNAME'],
                    
$attributes['LASTNAME']
                ),
                
'email' => $attributes['EMAIL'],
            ),
        ),
        
'params' => (object) $attributes,
        
'tags' => array( 'Contact Form 7' ),
    ) );
}


function 
wpcf7_sendinblue_collect_parameters() {
    
$params = array();

    
$submission WPCF7_Submission::get_instance();

    foreach ( (array) 
$submission->get_posted_data() as $name => $val ) {
        
$name strtoupper$name );

        if ( 
'YOUR-' == substr$name0) ) {
            
$name substr$name);
        }

        if ( 
$val ) {
            
$params += array(
                
$name => $val,
            );
        }
    }

    if ( isset( 
$params['SMS'] ) ) {
        
$sms implode' ', (array) $params['SMS'] );
        
$sms trim$sms );

        
$plus '+' == substr$sms0) ? '+' '';
        
$sms preg_replace'/[^0-9]/'''$sms );

        if ( 
strlen$sms ) and strlen$sms ) < 18 ) {
            
$params['SMS'] = $plus $sms;
        } else { 
// Invalid phone number
            
unset( $params['SMS'] );
        }
    }

    if ( isset( 
$params['NAME'] ) ) {
        
$your_name implode' ', (array) $params['NAME'] );
        
$your_name explode' '$your_name );

        if ( ! isset( 
$params['LASTNAME'] ) ) {
            
$params['LASTNAME'] = implode(
                
' ',
                
array_slice$your_name)
            );
        }

        if ( ! isset( 
$params['FIRSTNAME'] ) ) {
            
$params['FIRSTNAME'] = implode(
                
' ',
                
array_slice$your_name0)
            );
        }
    }

    
$params apply_filters(
        
'wpcf7_sendinblue_collect_parameters',
        
$params
    
);

    return 
$params;
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586