Example #1
0
 function autorespuesta($email_destino, $subject)
 {
     if ($email_destino) {
         $email_alt_body = Config::getPreferenceValue("email_alt_body_visitor");
         $html = "<div class='entry' style='margin: 0px auto; width: 100%; -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; border-width: 3px; border-style: solid; border-color: #9b0310;'><table style='width: 80%;' border='0' align='center'><tbody><tr><td>&nbsp;<img src='http://www.uiest.edu.mx/images/logo_uiest_sin_bola.png' alt='' width='93' height='123' /></td><td style='text-align: center;'><span>Actitud emprendedora, formaci&oacute;n innovadora&nbsp;</span><strong>UIEST</strong></td></tr><tr><td colspan='3' align='center'>&nbsp;<br /><span>La siguiente informaci&oacute;n fue proporcionada desde el Portal</span><br />&nbsp;</td></tr><tr><td colspan='2' align='left'><p>Gracias por su comentario <br /> Nos pondremos en contacto con usted a la brevedad.</p><p>Universidad IEST</p></td></tr><tr><td>&nbsp;</td><td><p style='font-size: 9px; text-align: right;'>E-mail generado autom&aacute;ticamente</p></td></tr></tbody></table></div>";
         $this->enviarEmail($email_destino, $subject, $html, $email_alt_body);
     }
     return true;
 }