Is it possible to put a link or any downloadable contents under $autoreply in my php (click HERE part)?
I hardly found any answers online and I think I'm still lack of understanding of coding php.
<?php
/* SETTING VARIABLES */
/* FORMFIELD 1 */
$name = $_POST['name'];
$lastname = $_POST['lastname'];
$nickname = $_POST['nickname'];
$age = $_POST['age'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$skype = $_POST['skype'];
/* FORMFIELD 2 */
$membership = implode(',', $_POST['membership']);
$memberdetail = $_POST['memberdetail'];
/* RESPONSE TO Eng2Skype's email */
$autoreply="Thank you for registering with English2Skype™ \n\nPlease click HERE to download our manual and application forms \n\n English2Skype™ team";
$subject="Thank you for your submission! - English2Skype";
mail($email, $subject, $autoreply);
/* INFORMATION TO BE EMAILED */
$formcontent = "Name: $name \n Lastname: $lastname \n Nickname: $nickname \n Age: $age \n Phone: $phone \n Email: $email \n Skype: $skype \n Membership: $membership \n Member Detail: $memberdetail";
$recipient = "englishtoskype@gmail.com";
$subject = "Eng2Skype Online Register";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
/* RESPONSE TO Eng2Skype's email */
echo '<img src="../images/subpages/eng2skype.png">';
echo "<br>";
echo "<br>";
echo "Thank you for registering with English2Skype program. Please check your email for downloadable manual and application forms.";
echo "<br>";
echo "<br>";
echo "<a href='../index.php' style='text-decoration:none; color:#df2590;'> Return Home</a>";
echo "<br>";
echo "<br>";
echo "Love us, Follow us at";
echo '<img src="../images/subpages/eng2skype-poster.png" width="200" height="200" />';
?>