Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by NAVAC ( 13 years ago )
<?php
$asunto = "Esto es una prueba";
$mensaje_email = "Angelica me ama";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "From: [email protected]\r\n";
$headers .= "To: [email protected]\r\n";
$headers .= "Return-Path: [email protected]\r\n";
$headers .= "X-Priority: 10\r\n";
$headers .= "X-Mailer:PHP ".phpversion()."\r\n";
$headers .= "Content-Type: text/plain; charset=iso-8859-1";
mail("[email protected]", $asunto, $mensaje_email, $headers);
?>
Revise this Paste
Parent: 66610