I have a Joomla site where I use this module Simple Email Form and I have the problem that when responding to a user it often ends in junk/spam folders. I've looked at the code and this module is using JFactory::getMailer(); and it is only using the addRecipient()
, setSender()
, setSubject()
, setBody()
and I have set the isHTML()
to true in the JFactory object.
I have tested my mail with this site: http://www.isnotspam.com/ and got this result: pastebin.com
I'm don't really understand how email work and what parts are important, but I think this is probably the problem:
DomainKeys check details:
----------------------------------------------------------
Result: neutral (message not signed)
ID(s) verified: header.From=example@example.com
Selector=
domain=
DomainKeys DNS Record=
Could someone tell me how to send a email the right way and I want to be able to promise to my client that their mails won't end in theirs clients spam/junk folders.
If it is easier to move away from JFactory to something else I am willing to do this also :)