Comments Thomas Fossi started the conversationJanuary 15, 2018 at 9:47pmSorry but to make the sending mail work, I have to add the send.php file to my site?Or is there an alternative method? 850Jelly repliedJanuary 17, 2018 at 8:34pmHello Thomas,I am sorry for delay.Newsletter Form you are currently using doesn't work for you? It should work just like that.Are you sure that your server can send out emails?Best Regards,Jelly TeamThomas Fossi repliedJanuary 17, 2018 at 9:04pmThe form in your template is set as follows: <section class="section stay-in-touch inverse-color parallax-section" id="anchor07" data-parallax-image="images/demo/stay-in-touch/stay.jpg"> <div class="container"> <div class="row"> <div class="col-xs-12 col-md-6"> <div class="voffset190"></div> <p class="titulo">Stay in<br> Touch</p> <div class="voffset20"></div> <p class="cousine subtitulo">Subscribe for free downloads and news updates.</p> <div class="voffset30"></div> <label for="stay-in-touch-email">YOUR EMAIL</label> <form action="send.php" method="post"> <div class="row"> <div class="col-xs-12 col-sm-8"> <input name="stay-in-touch-email" id="stay-in-touch-email" type="text" value=""> </div> <div class="col-xs-12 col-sm-4"> <input name="button" class="btn square stay-in-touch-submit" type="submit" value="GET STARTED"> </div> </div> </form> <div class="voffset190"></div> </div> </div> </div> </section> Instead the php file (send.php) in the server is so configured:<?phpif(!$_POST) exit; $to = '[email protected]'; #Replace your email id... $name = $_POST['txtname']; $email = $_POST['txtemail']; $subject = $_POST['cmbsubject']; $comment = $_POST['txtmessage']; if(get_magic_quotes_gpc()) { $comment = stripslashes($comment); } $e_subject = 'Messaggio dal sito internet da ' . $name . '.'; $msg = "Sei stato contattato dal sito da $name per questa informazione, $subject.\r\n\n"; $msg .= "$comment\r\n\n"; $msg .= "Per contattare $name via email, $email.\r\n\n"; $msg .= "-------------------------------------------------------------------------------------------\r\n"; if(@mail($to, $e_subject, $msg, "From: $email\r\nReturn-Path: $email\r\n")) { echo "<span class='success-msg'>Grazie per averci contattato, Ti rispoderemo prima possibile.</span>"; } else { echo "<span class='error-msg'>Sorry your message not sent, Try again Later.</span>"; }?> But it does not work.What should I do ?Thank you. 850Jelly repliedJanuary 19, 2018 at 9:55amHello again,I am sorry. I thought you were using our Soundlab WordPress theme.Unfortunately helping you with back-end programming goes beyond Envato's support policy for HTML templates.Best Regards,Jelly Team Sign in to reply ...
Sorry but to make the sending mail work, I have to add the send.php file to my site?
Or is there an alternative method?
Hello Thomas,
I am sorry for delay.
Newsletter Form you are currently using doesn't work for you? It should work just like that.
Are you sure that your server can send out emails?
Best Regards,
Jelly Team
<?php
if(!$_POST) exit;
$to = '[email protected]'; #Replace your email id...
$name = $_POST['txtname'];
$email = $_POST['txtemail'];
$subject = $_POST['cmbsubject'];
$comment = $_POST['txtmessage'];
if(get_magic_quotes_gpc()) { $comment = stripslashes($comment); }
$e_subject = 'Messaggio dal sito internet da ' . $name . '.';
$msg = "Sei stato contattato dal sito da $name per questa informazione, $subject.\r\n\n";
$msg .= "$comment\r\n\n";
$msg .= "Per contattare $name via email, $email.\r\n\n";
$msg .= "-------------------------------------------------------------------------------------------\r\n";
if(@mail($to, $e_subject, $msg, "From: $email\r\nReturn-Path: $email\r\n"))
{
echo "<span class='success-msg'>Grazie per averci contattato, Ti rispoderemo prima possibile.</span>";
}
else
{
echo "<span class='error-msg'>Sorry your message not sent, Try again Later.</span>";
}
?>
But it does not work.
What should I do ?
Thank you.
Hello again,
I am sorry. I thought you were using our Soundlab WordPress theme.
Unfortunately helping you with back-end programming goes beyond Envato's support policy for HTML templates.
Best Regards,
Jelly Team