Thran 0 Denunciar post Postado Fevereiro 16, 2005 pessoal estou mandando um email com a funcção mail e usando os guintes headers: $email = "meuemail@gmail.com";$headers = "MIME-Version: 1.0\n";$headers .= "Return-Path: <".$email.">\n";$headers .= "Content-type: text/html; charset=iso-8859-1\n";$headers .= "From: ".$email." <".$email.">\n"; e não funciona mais se eu uso assim funciona: $headers = "MIME-Version: 1.0\n";$headers .= "Return-Path: <meuemail@gmail.com>\n";$headers .= "Content-type: text/html; charset=iso-8859-1\n";$headers .= "From: meuemail@gmail.com <meuemail@gmail.com>\n"; alguém sabe o q pode estar havendo!? obrigado!!! Compartilhar este post Link para o post Compartilhar em outros sites
lukascolette 0 Denunciar post Postado Fevereiro 17, 2005 no primeiro codigo use assim: PHP [/tr][tr]$email = "meuemail@gmail.com"; $headers = "MIME-Version: 1.0\n"; $headers .= "Return-Path: <$email>\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\n"; $headers .= "From: $email <$email>\n"; [/tr] http://forum.imasters.com.br/public/style_emoticons/default/joia.gif Compartilhar este post Link para o post Compartilhar em outros sites