18910140161

将联系人答复提交到电子邮件

顺晟科技

2021-07-16 10:58:42

247

我正在使用repl.it构建我的网站,但是,repl.it有一个名为html/css/js的服务器,它不支持主要用于提交电子邮件联系回复的PHP。该网站建立在HTML/CSS/JS服务器上。所以我不能使用PHP来提交电子邮件的联系人回复。使用Node.js有其他方法吗?

我仍然设置了PHP,但如果可能的话,只需要将其转换为Node.js。

PHP文件:
$fname = $_POST['firstname'];
$lname = $_POST['lastname'];
$email_address = $_POST['email'];
$message = $_POST['subject'];
if(empty($fname) || 
empty($lname) || 
empty($email_address) || 
empty($message)){
    $errors .= "\n Error: all fields are required";
}else{
//some other code 
$to = $myemail;
$email_subject = "Contact form submission:" . $name;
$email_body = "You have received a new message. ".
" Here are the details:\n Name: " . $name . "\n ".
"Email: $email_address\n Message \n " . $message;
$headers = "From:" . $myemail . "\n";
$headers .= "Reply-To:" . $email_address;
mail($to,$email_subject,$email_body,$headers);

header('Location: thank-you.html');
}
代码的其余部分:

input[type=text], [type=email], select, textarea { width: ; padding: 12px; border: 1px solid #ccc; margin-top: 6px; margin-bottom: 16px; resize: vertical; } input[type=submit] { background-color: rgb(62, 3, 179); color: white; padding: 12px 20px; border: none; cursor: pointer; } input[type=submit]:hover { background-color: deeppink; } .contactform { position: relative; border-radius: 50px; background-color: #f2f2f2; padding: 5px; z-index: 2; display: block; margin-left: auto; margin-right: auto; margin-bottom: auto; margin-top: 1%; width: ; animation-name: gradient; animation-duration: 3s; animation-iteration-count: infinite; } .contactform:hover { animation-name: gradient; animation-duration: 15s; animation-iteration-count: infinite; } .column { float: center; width: 50%; margin-top: 6px; padding: 20px; display: block; margin-left: auto; margin-right: auto; width: 40%; } .row:after { content: ""; display: table; clear: both; } @media screen and (max-width: 600px) { .column, input[type=submit] { width: auto; margin-top: 0; } } <section id="contact"> <div class="container" data-aos="fade-up"> <div class="contactform"> <div style="text-align:center"> <div class="section-title"> <h2><br/>Get In Touch</h2> </div> <p>Feel Free To Reach Out To Me Through This Form! </p> </div> <div class="row"> <div class="column"> <form name="myform" action="contact.php" method="POST"> <label for="firstname">First Name</label> <input type="text" id="firstname" name="firstname" placeholder="Your name.." required> <label for="lastname">Last Name</label> <input type="text" id="lastname" name="lastname" placeholder="Your last name.." required> <label for="email">Email:</label> <input type="email" id="email" name="email" placeholder="Your Email.." required> <label for="subject">Subject</label> <textarea id="subject" name="subject" placeholder="Lets Collaborate..." style="height:170px" required></textarea> <input type="submit" value="Submit"> </form> </div> </div> </div> </div> </section>

是否有一种方法可以将PHP代码转换为Javascript,并且只要用户点击submit按钮,响应就会发送到电子邮件?


顺晟科技:

  • TAG:
相关文章
我们已经准备好了,你呢?
2024我们与您携手共赢,为您的企业形象保驾护航