さて、私は以下のスクリプトを持っています:
$to = 'jackal@sbccrew.com';
$subject = 'Submission from the website!';
$message = 'Please check out the latest submission';
$query= 'SELECT name,phone,needs,specifics FROM contact order by ID ASC limit 1';
$headers = 'From: info@preferredmobiletinting.com' . "\r\n" .
'Reply-To: info@preferredmobiletinting.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $query, $headers);
exit;
このメールを受信すると、そこに入力した実際のクエリではなく、メッセージのみが表示されます。私は何を間違っていますか?