[php] The PHP code I am trying to paste at CoDidact network but gets blocked

Viewer

copydownloadembedprintName: The PHP code I am trying to paste at CoDidact network but gets blocked
  1.         <?php
  2.                 $name = $_POST["name"];
  3.                 $email = $_POST["email"];
  4.                 $phone = $_POST["phone"];
  5.                 $topic = $_POST["topic"];
  6.                 $date = $_POST["date"];
  7.                 $notes = $_POST["notes"];
  8.  
  9.                 $to = "EMAIL_ADDRESS@EMAIL_TLD";
  10.                 $subject = "הודעת יצירת קשר";
  11.                 $message = array (
  12.                         $name . "שם" . "\r\n",
  13.                         $email . "אימייל" . "\r\n",
  14.                         $phone . "טלפון" . "\r\n",
  15.                         $topic . "פנייה בנושא" . "\r\n",
  16.                         $date . "תאריך רצוי לפגישה (אם יש)" . "\r\n",
  17.                         $notes . "הערות (אם יש)" . "\r\n"
  18.                 );
  19.                 $headers = array(
  20.                         "From" => $email,
  21.                         "Reply-To" => $email,
  22.                         "X-Mailer: PHP/" . phpversion()
  23.                 );
  24.                 # The order should be as above: $to, $subject, $message and $headers
  25.                
  26.                 mail($to, $subject, $message, $headers);
  27.         ?>

Editor

You can edit this paste and save as new:


File Description
  • The PHP code I am trying to paste at CoDidact network but gets blocked
  • Paste Code
  • 12 Mar-2021
  • 790 Bytes
You can Share it: