が、私は私のウェブサイトからのフィードバックを送信するには、セットアップにメールフォームをしようとしている、こちらのフォームです:私のメールフォームが機能しないのはなぜですか?
<form method='post' action='mailform.php'>
<fieldset>
<label for='message'><b>Reflection:<b></label><br/><br/>
<p>Tell us what you thought of the Workshop, did you enjoy the tasks?, Could we have done anything different?</p>
<textarea name='message' rows='15' cols='80'>
</textarea><br/>
<input type='submit' VALUE='Send' size='5' />
</fieldset>
</form>
とここで私はに関連するエラーを取得しておくmailform.php
<?php
$message = $_REQUEST['message'] ;
mail("address here", $message);
?>
です最後に?>ビット。
私は間違っていますか?
$targetEmail = '[email protected]';
$subject = 'Sending e-mails from PHP is fun!';
$message = 'Do you agree?';
mail($targetEmail, $subject, $message);
エラーメッセージが表示されないのはなぜですか? –
私は悪いと思いました:警告:mail()は3つ以上のパラメータを必要とします.2行目のmailform.phpに与えます。 – Addioioi
mail()関数は3つのパラメータを期待しています。 ://php.net/manual/pt_BR/function.mail.php –