如何发送电子邮件接受或拒绝预订请求

我的目标是能够通过电子邮件接受或拒绝客户的请求。我拥有的是我网站的后台,那里似乎每个提交给我的预订表格的人,提交后的客户会收到一封电子邮件,说他们的确认正在等待中,此时管理员可以选择接受或拒绝预订,完成该操作后,客户将收到一封带有回复的电子邮件。现在,我试着点击“接受”按钮,看看它是否会起作用。现在,我收到一条错误消息,指出地址无效$mail->addAddress($_POST['EmailReser']);


//File listreser.php


<body style="background-color:white;">

<?php

      $sql="select * from Reservas";

  $res=$lig->query($sql);

?>


<div class="container">

  <h1 align="center">List Reservations</h1> <br><br>      

  <table id ="tableUser"  class="table table-striped display">

    <thead>

  <tr>

    <th>Code of the reservation</th>

    <th>Name </th>

    <th>Last Name</th>

    <th>Email</th>

    <th>Telephone</th>

    <th>Date </th>

    <th>Time</th>

    <th>Number of people</th>

    <th>Message </th>

    <th>State</th>

    <th></th>

    <th></th>

      </tr>

    </thead>

    <tbody>

<?php 

while ($lin=$res->fetch_array()){ ?>

      <tr>

        <td><?php echo$lin[Cod_Reserva]; ?></td>

    <td><?php echo$lin[NomeReser]; ?></td>

    <td><?php echo$lin[ApelidoReser]; ?></td>

    <td><?php echo$lin[EmailReser]; ?></td>

    <td><?php echo$lin[TelefoneR]; ?></td>

    <td><?php echo$lin[DataR]; ?></td>

    <td><?php echo$lin[Hora]; ?></td>

    <td><?php echo$lin[NumPessoas]; ?></td>

    <td><?php echo$lin[MensagemR]; ?></td>     

 <td><a style="padding-right:12px;" href=index.php?cmd=aceitar&Cod_Reserva=<?php echo $lin["Cod_Reserva"]; ?>><img src='images/check.png' width="20" height = "20" ></a><a href=index.php?cmd=rejeitar&Cod_Reserva=<?php echo $lin["Cod_Reserva"]; ?>><img src='images/close.png' width="15" height = "15" ></td>


      </tr>

 <?php 

}

 ?>

  </tbody>

  </table>

</div>


炎炎设计
浏览 224回答 1
1回答

HUH函数

您可以使用指向发送接受电子邮件的单独 PHP 脚本的链接替换您的按钮。您需要包含足够的信息以了解您正在接受的预订(以及将其发送到何处),并且您需要添加一些验证以确保只有合适的用户才能实际处理接受。所以就像你代码的结尾<a&nbsp;href='acceptance.php?ref=<?php&nbsp;echo&nbsp;$lin["Cod&nbsp;Reserva"];&nbsp;?>'>Accept</a>调用该脚本并将该值作为 $_GET['ref'] 传递给表中的每一行。抱歉,我不知道这是否是要传入的正确字段,但它必须是预订的唯一 ID。然后您的acceptance.php 脚本从数据库中检索其余信息以获取要使用的电子邮件地址。或者您可以在每一行中绘制一个 html 表单,将引用粘贴到隐藏变量中,绘制一个按钮,然后调用单独的脚本。在单独的脚本中而不是在同一个脚本中发送电子邮件使得稍后为启用了 JS 的用户添加 Ajax 变得容易。
打开App,查看更多内容
随时随地看视频慕课网APP