Ver Mensaje Individual
  #5 (permalink)  
Antiguo 11/02/2014, 11:17
nicopavlotsky
 
Fecha de Ingreso: febrero-2014
Ubicación: san martin de los andes
Mensajes: 3
Antigüedad: 10 años, 9 meses
Puntos: 0
Respuesta: Error PHP (Envío de formulario)

Hola probe lo que me dijiste me quedo algo como esto:

Código:
<?php

	$name = strip_tags($_POST["nombre"]);
	$apellido = strip_tags($_POST["apellidos"]);
	$tel = strip_tags($_POST["telefono"]);
	$mail = strip_tags($_POST["correo"]);
	$mensaje = strip_tags($_POST["comentario"]);

	$fecha = time();
	$fechaFormato = date("j/n/Y",$fecha);

	/*from: datos del emisor
		To: datos del receptor
		Date: Fecha/Hora
		Subject: Contenido*/

	$cabecera = "MIME-VERSION: 1.0"  . "\r\n";
	$cabecera .= "Content-type: text/html; Charset=UTF-8"  . "\r\n";
	$cabecera .= "From: " . $mail;
	$cabecera .= "Reply to: " . $mail;

	$correoDestino = "[email protected]";

	$asunto = "Enviado por " . $name . " ". $apellido;

	$cuerpo = "Correo enviado por: " . $name . " ". $apellido;
	$cuerpo .= " con fecha: " . $fechaFormato;
	$cuerpo .= "Telefono: " . $tel;
	$cuerpo .= "Email: " . $mail;
	$cuerpo .= "mensaje: " . $mensaje;

	//Enviar el correo

	ini_set("SMTP","aspmx.l.google.com");

	mail($correoDestino, $asunto, $cuerpo, $cabecera);

?>
pero ahora me tira este error:

Warning: mail(): SMTP server response: 550-5.7.1 [190.99.114.194 1] Our system has detected an unusual rate of 550-5.7.1 unsolicited mail originating from your IP address. To protect our 550-5.7.1 users from spam, mail sent from your IP address has been blocked. 550-5.7.1 Please visit http://www.google.com/mail/help/bulk_mail.html to review 550 5.7.1 our Bulk Email Senders Guidelines. p10si12896279qag.38 - gsmtp in I:\wamp\www\envio.php on line 36


alguna idea? gracias!