I am trying to figure out a choice on a mailing list system. I understand the basic principles and design, but I had a problem with being picked up as spam.
If I send an html email address through Outlook via email@domain.com , it works fine and is not considered as spam. When I use the Zend_mail object to send mail, which it sends, but is considered as spam in test mailboxes, I also send it.
This is the im code used to send the email item.
$mail = new Zend_Mail();
$config = array('auth' => 'login','username' => 'email@domain.com','password' => 'mypassword');
$transport = new Zend_Mail_Transport_Smtp('mail.domain.com', $config);
$mail->setSubject($item->title);
$mail->setFrom("email@domain.com");
$mail->addTo($item->email, $item->forename);
$mail->setBodyHtml($item->contentHTML);
$mail->send($transport);
, im smtp , , . , , !
, :
, , , ? IP- 10
Received: (qmail 1436 invoked from network); 14 Aug 2009 16:02:10 +0100
Received: from clientdomain1.co.uk (HELO localhost) (91.192.***.196)
by clientdomain2.info with SMTP; 14 Aug 2009 16:02:10 +0100
Subject: Manchester 2 Day Seminar: Dealing with difficult people
From: events@domain.com
To: Andi <subscriber1@domain.com>
Date: Fri, 14 Aug 2009 15:02:10 +0000
Content-Type: text/html; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
MIME-Version: 1.0