I've looked in the Swift documentation and tryed to add headers but without success (they don't do what I want).
I'm using swift, and i'm trying to do so the emails I send out don't go into peoples junkmail boxes or get stopped by spamfilters and so on.
So i'm using this code to try to stop it getting blocked:
Code: Select all
$swift->addHeaders(
"From: "."$sender",
"Subject: "."$subject"
);Thanks