Trimitere email

Discutii despre script-uri si coduri PHP-MySQL, precum si lucru cu XML in PHP.
Monica
Mesaje:21

Trimitere email

Buna.

am codul

Cod: Selectaţi tot

<?php
$message = "Test";
$to = "......@yahoo.com";
$subject = "Test Email";
$headers = "From: .....@yahoo.com\r\n";
mail($to, $subject, $message, $headers);
?>
care nu trimite nimic pt ca imi returneaza, pt ultima linie, eroarea :

""Warning: mail() [function.mail]: Failed to connect to mailserver at "127.0.0.1" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in .....""

caut de vreo 3 ore pe google rezolvarea dar, sincer, nu reusesc sa ma lamuresc care-i problema, unde si ce trebuie sa modific :roll:

In php.ini am asa: (am inlocuit http: cu xxx pt ca nu ma lasa sa trimit mesaj cu mai mult de doua url-uri)
----------------------------------------------------------------

Cod: Selectaţi tot

[mail function]
; For Win32 only.
;xxx//php.net/smtp
SMTP = 127.0.0.1
; xxx//php.net/smtp-port
smtp_port = 25

; For Win32 only.
; xxx//php.net/sendmail-from
;sendmail_from = me@example.com

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; xxx//php.net/sendmail-path
;sendmail_path =

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = On

; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log =
---------------------------------------------------------------------

Multumesc anticipat

MarPlo Mesaje:4343
Ca sa poti trimite mail cu PHP si functia mail() trebuie sa ai instalat si un server de email. Apoi PHP si acel server trebuie configurate sa lucreze impreuna, functia mail() doar trimite datele la serverul de email, care le trimite mai departe.
Dar cum se foloseste un server de email cu PHP nu cunosc, pt. teste am folosit hosting-uri gratuite care au deja si aceasta facilitate (de exemplu cei de la go.ro ).

Monica Mesaje:21
Am inteles. O sa incerc pe un host gratuit unde am cont sa vad daca merge.

------------------------------------------------------
Merge. :)

Topicul se poate inchide.

Subiecte similare