0

我尝试从我的联系表格发送消息,但我没有收到任何消息。

我使用 QuickEmail 对其进行测试,并在我的 mailtrap 帐户上收到一条消息。我想问题出在联系表格上(现在我是本地人)。

//Chunk
[[!FormIt?
   &hooks=`spam,email,redirect`
   &emailTpl=`MyEmailChunk`
   &emailTo=`test@gmail.com`
   &redirectTo=`123`
]]

<form action="[[~[[*id]]]]" method="post" class="form">
        <input class="mb-4" type="text" placeholder="NAME" id="name" />
        <input class="mb-4" type="text" placeholder="EMAIL" id="email" />
        <textarea class="mb-4" type="text" placeholder="MESSAGE" id="message"></textarea>   
        <button class="btn btn-success">SUBMIT</button>  
</form>

//Second chunk
Name: [[+input-name]] <br/>
Email: [[+input-email]] <br/>
Message: <br /> 
[[+input-textare]]
<br/>
Agreement check: [[+input-checkbox]]
4

2 回答 2

0

你使用 SMTP 吗?这可能也很重要,请启用它。它取决于服务器设置。所以如果我正确理解这一点并且你真的使用本地服务器 - 这一切也很有意义。

于 2020-03-12T15:36:02.930 回答
0

您缺少name参数,这是必需的。

<input name="input-name" class="mb-4" type="text" placeholder="NAME" id="name" />

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname

于 2020-06-22T20:03:29.070 回答