Add telephone number to reaction for AND email
-
I have used your contact-form-email plugin to expand the content of the form and subsequent email to the admin.
I would like to add an extra field ( “telefoon” ) to the form AND it should be included in the mail that is sent.// Include Advert price and location at the end of message
$mail[“message”] .= “\r\n—\r\n”;
$mail[“message”] .= adverts_price( get_post_meta( $post_id, “adverts_price”, true ) ) . “\r\n”;
$mail[“message”] .= get_post_meta( $post_id, “adverts_location”, true ) . “\r\n”;
$mail[“message”] .= “Email: ” . $form->get_value( “message_email” ) . “\r\n”;
$mail[“message”] .= “Telefoon: ” . $form->get_value( “message_telefoon” ) . “\r\n”;// Allways make sure to return $mail
return $mail;
}
- The topic ‘Add telephone number to reaction for AND email’ is closed to new replies.