Reply To: Contact form is NOT working

Support Forums Azul – HTML Template Contact form is NOT working Reply To: Contact form is NOT working

#4087
Kedar
Participant

<?
//define the receiver of the email

define(‘TO_NAME’,’Gorący Potok’); //put your name
define(‘TO_EMAIL’,’info@goracypotok.pl’); //put your email

define(‘TEMPLATE_PATH’,’template/default.php’);

define(‘SMTP_HOST’,’serwer1408104.home.pl’); //for example gmail: smtp.gmail.com
define(‘SMTP_USERNAME’,’info@goracypotok.pl’); //put your email
define(‘SMTP_PASSWORD’,’xxxxxxxxx’); //put your password
define(‘SUBJECT’,’Kontakt ze strony tymczasowej Gorący Potok’); //change if you want the subject

// Messages
define(‘MSG_INVALID_NAME’,’Please enter your name.’);
define(‘MSG_INVALID_EMAIL’,’Please enter valid e-mail.’);
define(‘MSG_INVALID_MESSAGE’,’Please enter your message.’);
define(‘MSG_SEND_ERROR’,’Sorry, we can\’t send this message.’);

?>