Ver Mensaje Individual
  #6 (permalink)  
Antiguo 09/05/2002, 09:10
jm23
 
Fecha de Ingreso: enero-2002
Mensajes: 15
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: Enviar E-mails desde Host.sk? ???

Hola,
para utilizar el mail en host.sk tenes que sustituir la linea en cuestion por

<?php
require("class.smtp.php");
$smtp=new smtp();
$smtp->host_name = "localhost";
$smtp->localhost = "host.sk";
// nemozeme zarucit funkcnost, pokial
// zmenite hodnoty uvedene nad touto poznamkou

$from = "[email protected]";
$to = "[email protected]";
$subject = "testicek";
$text = "nieco";

$smtp->SendMessage( $from, array( $to ), array( "From: $from", "To: $to", "Subject: $subject" ), $text );
?>

para mas info te recomiendo que leas las faq
en<a href='ir.asp?http://faq.host.sk/index.php?num=2&amp;group=3&amp;f_id=3' target='_blank'>http://faq.host.sk/index.php?num=2&amp;g...</a>
luego tenes que bajarte el archivo class.smtp desde aqui<a href='ir.asp?http://faq.host.sk/index.php?num=2&amp;group=3&amp;f_id=3' target='_blank'>http://faq.host.sk/index.php?num=2&amp;g...</a>