예제 #1
0
 /**
  *
  * @return multitype:string
  */
 public function sendAction()
 {
     $content = "This is the message of a user trying to contact you: ";
     $to = $this->getPost("to");
     $from = $this->getPost("from");
     $content .= $this->getPost("content");
     $name = $this->getPost("name");
     EmailHelper::sendContactEmail($to, $from, $content, $name);
     return array("message" => "email sent");
 }
예제 #2
0
<?php

include __DIR__ . "/../config/module_loader.php";
use INUtils\Helper\EmailHelper;
if (isset($_POST['send_email'])) {
    if ($_POST['from'] == 'none') {
        $from = null;
    } else {
        $from = $_POST['from'];
    }
    if (isset($_POST['to'])) {
        $to = $_POST['to'];
    } else {
        $to = "*****@*****.**";
    }
    if (isset($_POST['subject'])) {
        $subject = $_POST['subject'];
    } else {
        $subject = "I want to contact you";
    }
    if (isset($_POST['url'])) {
        EmailHelper::sendEmail($to, $subject, $_POST['url'], $_POST['content'], $from);
    } else {
        EmailHelper::sendContactEmail($to, $from, $_POST['content'], $_POST['name']);
    }
    echo json_encode(array("status" => "message sent"));
    die;
}