[php] The PHP code I am trying to paste at CoDidact network but gets blocked
Viewer
*** This page was generated with the meta tag "noindex, nofollow". This happened because you selected this option before saving or the system detected it as spam. This means that this page will never get into the search engines and the search bot will not crawl it. There is nothing to worry about, you can still share it with anyone.
- <?php
- $name = $_POST["name"];
- $email = $_POST["email"];
- $phone = $_POST["phone"];
- $topic = $_POST["topic"];
- $date = $_POST["date"];
- $notes = $_POST["notes"];
- $to = "EMAIL_ADDRESS@EMAIL_TLD";
- $subject = "הודעת יצירת קשר";
- $message = array (
- $name . "שם" . "\r\n",
- $email . "אימייל" . "\r\n",
- $phone . "טלפון" . "\r\n",
- $topic . "פנייה בנושא" . "\r\n",
- $date . "תאריך רצוי לפגישה (אם יש)" . "\r\n",
- $notes . "הערות (אם יש)" . "\r\n"
- );
- $headers = array(
- "From" => $email,
- "Reply-To" => $email,
- "X-Mailer: PHP/" . phpversion()
- );
- # The order should be as above: $to, $subject, $message and $headers
- mail($to, $subject, $message, $headers);
- ?>
Editor
You can edit this paste and save as new: