Fix geolocation
[busui.git] / feedback.php
blob:a/feedback.php -> blob:b/feedback.php
<?php <?php
include('common.inc.php'); include('common.inc.php');
include_header("Feedback","feedback") include_header("Feedback","feedback");
  function sendEmail($topic, $message) {
  $address = "maxious@lambdacomplex.org";
   
  if (file_exists("/tmp/aws.php") ) {
  include_once('ses.php');
  include_once("/tmp/aws.php");
  $con=new SimpleEmailService($accessKey,$secretKey);
  //$con->verifyEmailAddress($address);
  //$con->listVerifiedEmailAddresses();
   
  $m = new SimpleEmailServiceMessage();
  $m->addTo($address);
  $m->setFrom($address);
  $m->setSubject($topic);
  $m->setMessageFromString($message);
  $con->sendEmail($m);
  } else {
  // In case any of our lines are larger than 70 characters, we should use wordwrap()
  $message = wordwrap($message, 70);
   
  // Send
  mail($address, $topic, $message);
  }
  }
   
   
?> ?>
<h3>Add/Move/Delete a Bus Stop Location</h3> <h3>Add/Move/Delete a Bus Stop Location</h3>
StopID: StopID:
or StopCode: or StopCode:
   
Suggested Stop Location (lat/long or words): Suggested Stop Location (lat/long or words):
   
  Submit!
   
<h3>Bug Report/Feedback</h3> <h3>Bug Report/Feedback</h3>
  <textarea id="feedback">
  </textarea>
<textarea id="extrainfo"> <textarea id="extrainfo">
Referrer URL Referrer URL
User Agent User Agent
User host/IP User host/IP
Current date/time Current date/time
Dump of $_SESSION Dump of $_SESSION
</textarea> </textarea>
   
  Submit!