SCIENTIST Posted October 23, 2011 Report Share Posted October 23, 2011 (edited) Bom, como faço para configurar o envio de email via PHP ? tenho gmail e hotmail Edited October 23, 2011 by SCIENTIST Quote Link to comment Share on other sites More sharing options...
0 mJi Posted October 23, 2011 Report Share Posted October 23, 2011 Para enviar e-mail, utilize a função mail().Ela recebe como parâmetros:destinatário;assunto;mensagem;headers.Destinatário é o e-mail destino, o assunto não deve conter caractere de nova linha (\n), a mensagem pode ter caractere de nova linha, mas cada linha não deve ultrapassar os 70 caracteres, e os headers são opcionais, mas caso a função não esteja configurada no php.ini do servidor, eles são necessários. O header 'from' é obrigatórioExemplo:<?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers);Mais sobre a função na documentação. Quote Link to comment Share on other sites More sharing options...
0 SCIENTIST Posted October 23, 2011 Author Report Share Posted October 23, 2011 ta mais como configuro para ele partir do GMAIL (from) ? Me disseram que só funciona na UOL e BOl que não precisa de autenticação Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted October 24, 2011 Report Share Posted October 24, 2011 Linux? Windows?No Linux, ssmtp.Um abraço. Quote Link to comment Share on other sites More sharing options...
Question
SCIENTIST
Bom, como faço para configurar o envio de email via PHP ? tenho gmail e hotmail
Edited by SCIENTISTLink to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.