-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActMail.php
56 lines (45 loc) · 1.8 KB
/
ActMail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
session_start();
if (isset($_POST['txtNombre']) && isset($_POST['txtMail']) && isset($_POST['txtFono']) && isset($_POST['cbxTipoFicha']) && isset($_POST['txtNombrePaciente']) && isset($_POST['txtRutPaciente'])) {
$nombre = $_POST['txtNombre'];
$remitente = $_POST['txtMail'];
$nroTelefono = $_POST['txtFono'];
$nombrePaciente = $_POST['txtNombrePaciente'];
$rutPaciente = $_POST['txtRutPaciente'];
$tipoFicha = $_POST['cbxTipoFicha'];
$descripcion = "";
if(count($tipoFicha) > 1){
$descripcion = $tipoFicha[0]. " | " . $tipoFicha[1];
}else{
$descripcion = implode($tipoFicha);
}
require 'PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host = 'smtp.office365.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = 'registrosclinicale@clinicale.cl';
$mail->Password = 'Faj42792';
$mail->SetFrom('registrosclinicale@clinicale.cl', 'Solicitud Registro Clínico');
$mail->addAddress('katalina.guerrero@clinicale.cl', 'Estadística');
// $mail->SMTPDebug = 3;
// $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";}; //$mail->Debugoutput = 'echo';
$mail->IsHTML(true);
$mail->CharSet = 'UTF-8';
$mail->Subject = 'Ficha de '. $nombrePaciente;
$mail->Body = '<b> Información de contacto </b> </br> <b> Solicitante: </b>' . $nombre.
'</br> <b>E-mail: </b>'. $remitente. "</br><b>Telefono:</b> " . $nroTelefono. "</br>
<b>Paciente:</b> ".$rutPaciente." | ".$nombrePaciente. "</br>
<b>Tipo de Ficha:</b> ". $descripcion;
$mail->AltBody = 'Solicitante: '. $nombre. ' Información de contacto'. $remitente;
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
$_SESSION['exito'] = 'exito';
header("Location: solicitud.php");
}
}
?>