Witam
Dostałem informację od operatora (home.pl) że aby funkcja mail() działała należy jako 5 parametr podać: "-f adres@mojadomena.pl" (niby jakieś ich nowe zabezpieczenia antyspamowe) - to rozumiem nie ma problemu aby to dodać - problem pojawia mi się wtedy gdy korzystam z biblioteki swift mailer nie wiem jak dodać ten parametr - proszę o pomoc.
0
0
Swiftmailer ma kilka transportów. jesli korzystasz z mail() znaczy że masz do uzycia Swift_MailTransport. Idąc za dokumentacją w http://swiftmailer.org/docs/sending.html Swift_MailTransport automagicznie daje -f wstawiajac adres nadawcy:
The
mail()
function can take a$additional_parameters
parameter. Swift Mailer sets this to "-f%s" by default, where the "%s" is substituted with the address of the sender (via asprintf()
) at send time. You may override this default by passing an argument tonewInstance()
.