• Hey there,

    Thank you very much for creating this plugin. This is exactly what we need for our site.

    I can see that the plugin is recording and sending the email addresses properly to our email list. However, I wonder if it would be possible to import also first name and last name that our users fill in our contact forms. Perhaps there is a setting that I’m missing?

    Here you can see a screenshot:
    https://roy-hart-theatre.com/wp-content/uploads/2018/06/sendinblue-plugin.png

    For privacy reasons, we censored the emails.
    But, as you can see, and mentioned above, email is being recorded but name and last name remain empty.

    Looking forward to your reply.
    Cheers!
    Mauricio

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hola,

    Para lograr que el nombre y los apellidos, u otro atributo que desees a?adir queden grabados hay que hacer coincidir el nombre de los elementos del array en ‘attributes’ con el nombre de los atributos que figuran en los ajustes de tu cuenta sendinblue. Es lo que hice yo y me ha funcionado. Echale un vistazo a la siguiente función dentro de sendinblue.php

    public function cf7_filter($posted_data){
    if($posted_data[‘sendinblue-opt-in’][0] && $posted_data[‘sendinblue-list-id’]){
    $mailin = new Mailin(‘https://api.sendinblue.com/v2.0’,SEND_IN_BLUE_KEY);
    $data = array(“email” => $posted_data[‘your-email’],
    “attributes” => array(“NOMBRE”=>$posted_data[‘your-nicename’]),
    “listid” => array($posted_data[‘sendinblue-list-id’])
    );
    if($posted_data[‘apellidos’]){
    $data[‘attributes’] = array(‘SURNAME’ => $posted_data[‘apellidos’]);
    }
    $mailin->create_update_user($data);
    }
    return $posted_data;
    }

    Se ha cambiado NAME por NOMBRE porque es así como figura en la configuración de atributos de la cuenta de sendinblue

    Lógicamente debes asegurarte también que los nombres de los campos de CF7 son los mismos que los que están en el código de la función

    Hazlo y te irá bien.

    Un saludo

Viewing 1 replies (of 1 total)
  • The topic ‘Recording also Name and Last Name’ is closed to new replies.