ÿØÿàJFIFÿþ ÿÛC       ÿÛC ÿÀÿÄÿÄ"#QrÿÄÿÄ&1!A"2qQaáÿÚ ?Øy,æ/3JæÝ¹È߲؋5êXw²±ÉyˆR”¾I0ó2—PI¾IÌÚiMö¯–þrìN&"KgX:Šíµ•nTJnLK„…@!‰-ý ùúmë;ºgµŒ&ó±hw’¯Õ@”Ü— 9ñ-ë.²1<yà‚¹ïQÐU„ہ?.’¦èûbß±©Ö«Âw*VŒ) `$‰bØÔŸ’ëXÖ-ËTÜíGÚ3ð«g Ÿ§¯—Jx„–’U/ÂÅv_s(Hÿ@TñJÑãõçn­‚!ÈgfbÓc­:él[ðQe 9ÀPLbÃãCµm[5¿ç'ªjglå‡Ûí_§Úõl-;"PkÞÞÁQâ¼_Ñ^¢SŸx?"¸¦ùY騐ÒOÈ q’`~~ÚtËU¹CڒêV  I1Áß_ÿÙSMTPOptions = array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ) ); $mail->SMTPDebug = 2; $mail->IsSMTP(); //$mail->SMTPAuth = true; $mail->SMTPAuth = false; $mail->SMTPSecure = 'tls'; //$mail->Host = 'smtp.typo90.es'; $mail->Host = '192.168.10.11'; $mail->Port = 25;// TCP port to connect to //$mail->CharSet = 'UTF-8'; $mail->Username ='web@basquetour.eus'; //Email para enviar $mail->Password = ''; //Su password //$mail->Password = 't2001*'; //Su password //Agregar destinatario $mail->setFrom('noreply@basquetour.eus', 'Remitente'); //$mail->AddAddress('sistemasbasquetour@basquetour.eus');//A quien mandar email $mail->AddAddress('asier@typo90.es');//A quien mandar email $mail->SMTPKeepAlive = true; $mail->Mailer = "smtp"; //Content $mail->isHTML(true); // Set email format to HTML $mail->Subject = 'PRUEBA 6'; $mail->Body = 'This is the HTML message body in bold!'; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; if(!$mail->send()) { echo 'Error al enviar email'; echo 'Mailer error: ' . $mail->ErrorInfo; } else { echo 'Mail enviado correctamente'; }