Can any help me, how to change the response messages using wpcf7_messages filter hook according to situation. actually I am sending a code on mobile no in the before_mail_sent hook and want to change the message if the message sending code give me error.
When i am using the wpcf7_messages in the before_mail_sent hook function it it is not working for me
`
add_action("wpcf7_before_send_mail", 'send_mobile_code' );
function send_mobile_cod($wpcf7 ){
// mobile code generation and sending here
if($error == true){
// then i want to change the response messgae
}
}