我是网络技术的新手,我遇到了一些障碍,
我有一个 php 页面,它通过调用另一个 php 页面在 JS 中发送邮件请求,
但我需要将我的邮件的值传递给那个新的 php 页面,使用硬编码的 val 都可以正常工作,但我需要知道如何将参数传递给我的 php 发送邮件页面,
这里是主 php 页面的代码:
<script>
...
$.post( "send-mail-parklane-suscrib.php" , { name: "John", time: "2pm" });
...
</script>
这里是 send-mail-parklane-suscrib.php 的代码
<html>
<head><title>PHP Mail Sender</title></head>
<body>
<?php
session_start();
echo("chamb");
$to = 'juanss234@gmail.com';
$from = 'bot@parklanefinancial.com.au';
$subject = 'Parklane Financial Subscribe';
$headers = 'From: bot@parklanefinancial.com.au' . "\r\n".
'Reply-To: test@abc.com'. "\r\n".
'Return-Path: test@abc.com' . "\r\n".
'X-Mailer: PHP/' . phpversion();
$message = "SS9 tkt ss9!!!";
mail($to, $subject, $message, $headers, "-f $from");
?>
</body>
</html>
那么如何在我的发送邮件页面上访问这个 vals?
谢谢!