I'm trying to create a free email sender but to no avail.
I Use the PHP script alone to send the Mail message containing the HTML template, it goes just smooth and delivers fine.
However when i try to send it using my website the HTML template doesn't arrive.
The following PHP snippet does not work in conjunction with the HTML code :
<?Php
$message = '<html><body>';
$message .= (isset($_POST['message']));
$message .= "</body></html>";
>
However without the HTML only PHP I manage to send.
$message = "<html><body>example</html></body>"
I think that the problem is with my HTML form.
<br><b>Your Message:</b><br>
<textarea type="html" name="message" rows="5" cols="50"style="width: 100%;"></textarea>
<br>
I'm no expert in this, and any help would be greatly appreciated.
question from:
https://stackoverflow.com/questions/65660978/creating-a-free-mailer-the-html-form-does-not-post-to-the-php-code 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…