Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1325369

    Good morning,
    I want to set in contact form autoresponder the logo and the information of the society (like email signature).
    Can i use the contact form to do it or are they any other solutions?
    Thank you

    #1325506

    Hey WURZ8,

    Thank you for the inquiry.

    You can use the avf_contact_form_incoming_mail filter to adjust the email configuration including the emailMessage. You could also create a completely new email template from scratch using the same filter.

    Example:

    add_filter("avf_contact_form_incoming_mail", function($mail_array, $new_post, $params, $class, $from, $from_filtered) {
         $logo = "<img src='LOGO URL' />";
         $mail_array["Message"] = $logo . $mail_array["Message"];
         return $mail_array;
    }, 10, 6); 
    

    This should prepend an image before the message. You can also use the avf_form_mail_form_field filter to adjust the layout of the email message per line. Default layout is..

    Form Field Label : Form Field Value '';
    

    Example:

    Email :  (Email address hidden if logged out) 
    Number : +1234567890
    Message : What's up Doc?
    

    Best regards,
    Ismael

    #1325525
    This reply has been marked as private.
    #1325653

    Hi,

    Thank you for the update.

    You have to add the filter in the functions.php file via the Appearance > Editor panel or directly through FTP. Please note that the $new_post variable is an array which contains the value of the form fields. You can use those values to create a completely different Message template if necessary, but that may require a bit of customization, which is beyond the scope of support.

    Related threads:

    // https://kriesi.at/support/topic/autoresponder-function-php-code-not-working
    // https://kriesi.at/support/topic/contact-form-elements-via-php-functions

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.