I have tried to follow to forum for this and found some posts and have done following but does not work.
on helper_functions.php code as follows:
$mail = new PHPMailer();
$mail->CharSet = 'UTF-8';
$mail->Host = "127.0.0.1";
$mail->IsHTML(true);
$mail->Mailer = "mail";
$mail->SMTPAuth = false;
if($form_id == 3){
$mail->From = $table_data['element_3'];
}else if($form_id == 1){
$mail->From = $table_data['element_2'];
}else if($form_id == 2){
$mail->From = $table_data['element_2'];
}
But still sender is the default sender...
Can you help?
Thanks in advance...