Jump to content

funcao mail


pedromartins

Recommended Posts

boas pessoal, estou a usar um script de recuperar palavras passe que tem na wiki do portugal a programar, mas a funcao mail está-me a dar problemas s: será que me podem ajudar? ths

Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in C:\xampp\htdocs\lostpw.php on line 21

Link to comment
Share on other sites

falta as headers http://pt.php.net/manual/en/function.mail.php - ve o exemplo 2

Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender.

A beleza de um código está em decompor problemas complexos em pequenos blocos simples.

"learn how to do it manually first, then use the wizzy tool to save time."

"Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."

Link to comment
Share on other sites

tem que adicionar um parametro na funcao mail ou ir ao php.ini e meter o mail predefinido.

$headers = 'From: webmaster@example.com' . "\r\n" ;
if( mail($user, 'Recuperação de password', 'Olá '.$user.', visite este link '.$link, $headers) )
Edited by pikax

Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender.

A beleza de um código está em decompor problemas complexos em pequenos blocos simples.

"learn how to do it manually first, then use the wizzy tool to save time."

"Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.