本文整理汇总了PHP中email::sendRespuesta方法的典型用法代码示例。如果您正苦于以下问题:PHP email::sendRespuesta方法的具体用法?PHP email::sendRespuesta怎么用?PHP email::sendRespuesta使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类email
的用法示例。
在下文中一共展示了email::sendRespuesta方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sendRespuesta
function sendRespuesta()
{
$destino = new usuario($_POST["usr_id"]);
$correo = new email();
$link_detalle = FULL_WEBPAGE . '/detalle.php?id=' . $_POST["pub_id"];
$link_respuesta = FULL_WEBPAGE . '/preguntas.php?tipo=2&publicacion=' . $_POST["pub_id"];
$links = array("detalle" => $link_detalle, "respuesta" => $link_respuesta);
$correo->sendRespuesta($destino->a_email, $links, $_POST['respuesta']);
/*
$cli = new usuario($_POST["usr_id"]);
$poster = new usuario($_POST["id_poster"]);
$publicacion = new publicaciones($_POST["pub_id"]);
ini_set("sendmail_from",$poster->a_email);
$email_to = "" . $cli-> a_email . "";
$email_subject = "Apreciodepana.com "." - ".$poster-> n_nombre." ".$poster->n_apellido." ha contestado tu pregunta!";
$email_message = "Sobre la publicacion: ".$publicacion -> titulo." \n\n ".$_POST['respuesta'];
$txt = '<!DOCTYPE html>
<html lang="es"><body>
<div style=" padding 20px; text-align:left; margin: 20px;">
<div style="width:500px;background:#fff; color:#666; padding:20px; margin-left:30px; margin-right:30px;">
<div style="text-align:left; padding-bottom:10px; border-bottom: 1px solid #CCC;"><img src="http://vogueseshop.com/galeria/img/logos/logo-header2.png"></div>
<br>';
$txt .= " <div style='text-align:left; margin-left:10px; font-size: 18px; '>
<p><b>Te han respondido!</b></p>
<p>Te respondieron una pregunta sobre la siguiente publicación</p>
<a style='text-decoration:none;'><p>$link_detalle</p><a>
</div>
<br>
<div style='text-align:left; padding-bottom:10px; border-bottom: 1px solid #ccc;' >
<a href=$link_respuesta style='text-decoration:none;'>
<button style='background:#36A7E1;
text-align:center; color:#FFF; padding:10px; margin:10px; border: 1px solid #1e8dc6; cursor: pointer; font-size: 18px;'>Ver Respuesta</button>
</a> ";
$txt .= '<br></div><div style="font-size: 12px; text-align:left; margin-left:10px; color:#999; margin-top:5px;">
Vistete a la moda con la mejor tecnologia </div></div></div></body></html>';
//$headers = 'From: Apreciodepana.com ' . "\r\n" . 'Reply-To: ' . "no-reply@apreciodepana.com" . "\r\n" . 'X-Mailer: PHP/' . phpversion ();
$headers = 'From: Vogues Eshop <no-responder@vogueseshop.com> \r\n' . 'Reply-To: ' . "no-responder@vogueseshop.com" . "\r\n" . 'X-Mailer: PHP/' . phpversion ()." MIME-Version: 1.0\r\n"." Content-type: text/html; charset=UTF-8.";
mail ( $email_to, 'vogueseshop.com', $txt, $headers );
//echo json_encode(array("estado"=>"OK"));
echo json_encode(array("correo a enviar"=>$cli-> a_email, "correo from"=>$poster->a_email,"header"=>$headers,"subject"=>$email_subject,"message"=>$email_message));
*
*/
}