Reply To: Contact form not workin

Support Forums Cian – HTML Template Contact form not workin Reply To: Contact form not workin

#3911
Nejc
Participant

<?
//define the receiver of the email

define(‘TO_NAME’,’Prehrana’); //put your name
define(‘TO_EMAIL’,’support@bloom.si’); //put your email

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

define(‘SMTP_HOST’,’smtp.bloom.si’); //for example gmail: smtp.gmail.com
define(‘SMTP_USERNAME’,’support@bloom.si’); //put your email
define(‘SMTP_PASSWORD’,”); //put your password
define(‘SUBJECT’,’Sporocilo z spletne strani Prehrane’); //change if you want the subject

// Messages
define(‘MSG_INVALID_NAME’,’Manjka ime.’);
define(‘MSG_INVALID_EMAIL’,’Manjka email ali pa je nepravilen.’);
define(‘MSG_INVALID_MESSAGE’,’Manjka vsebina.’);
define(‘MSG_SEND_ERROR’,’Oprostite, napaka.’);

?>