Hi Team,
When testing site on wamp or Live contact form goes no response.
not showing any error or not submitting form also.
form.php file
/-------------------------------------------------
Receiver's Email
---------------------------------------------------/
$toemails = array();
$toemails[] = array(
'email' => 'writing email on which mail to send', // Your Email Address
'name' => '' // Your Name
);
$fromemail = array(
'email' => 'writing email from which mail tobe send', // Company's Email Address (preferably currently used Domain Name)
'name' => '' // Company Name
);
PHPMailer.php file
public $From = 'writing email from which mail tobe send';
/**
* The From name of the message.
*
* @var string
*/
public $FromName = 'Web Form';is any thing wrong.
