Jump to content
Fórum Script Brasil
  • 0

COnfigurar mail() no PHP


SCIENTIST

Question

3 answers to this question

Recommended Posts

  • 0

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ório

Exemplo:

<?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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...