This is a discussion on PHP Mail-Funktion within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hallo, kennt jemand den Netzwerk-Hintergrund der einfachen Mail-Funktion von PHP? Mich würde interessieren, wie die das überhaupt ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hallo,
kennt jemand den Netzwerk-Hintergrund der einfachen Mail-Funktion von PHP? Mich würde interessieren, wie die das überhaupt macht, denn anscheinend verbindet sie sich zum Beispiel nicht mittels SMTP? Aufgefallen ist mir, dass man damit ja auch ganz einfach eMails mit beliebiger Absende-Adresse verschicken kann. Das war zum Beispiel über SMTP-Server die mit POP3-before-SMTP-Authentisierung nicht möglich. Grüße, Michael |
|
|||
|
> http://us3.php.net/manual/en/ref.mail.php
> > If you have something specific you're dealing with, try posting > again, Hi Michael, on the page you posted, it says - "PHP must have access to the sendmail binary on your system during compile time" - in PHP_INI_ALL: SMTP=localhost, smtp_port=25 So if I understand this correctly, there is something like a local mail server running on the same machine. So the mail-function does nothing magical, but connecting to a local mail server (which seems to allow any from-name and any from-address). I was just wondering, how it sends the mail. So actually, it uses a local mail server which needs to be installed. Do you think, my considerations are correct? Thanks, Michael |