Edit title for admin email
-
Hi,
I’m using Trust Form, and i would like to customize that the automatically response email to admin is changed according to the input data.
Example)
Title = Incoming Inquiry (Software)The part “Software” is the value checked in my form.
Is there anyway i could do it?
I’ve checked on github on how to add the filter for adding id to the subject.
https://gist.github.com/horike37/7410391<?php add_filter( 'tr_subject_admin_mail', 'my_tr_subject_admin_mail', 10, 3 ); function my_tr_subject_admin_mail( $subject, $data, $id ) { $responce = get_post_meta( $id, 'answer' ); krsort($responce); $entry_id = key($responce); return $subject . '[id:'.$entry_id.']'; } add_filter( 'tr_subject_admin_mail', 'my_tr_subject_admin_mail', 10, 3 );
but i couldnt figure out how to get the value of the checked box.
I would appreciate for any documentation on the variable passed to tr_subject_admin_main (What’s 10 or 3).
Thank you.
- The topic ‘Edit title for admin email’ is closed to new replies.