Link to home
Start Free TrialLog in
Avatar of selim007
selim007

asked on

automated mailing system sends emails as spam

Dear,
i am trying to automate mail sending process, the only problem is that the sent emails are being received as spam. the email is a multi part/mixed mime encoded.
the problem has nothing to do with the isp or the helo command as i've tried to send the email from outlook and it arrived to my inbox normally (not spam)
any help is highly appreciated
regards
Avatar of selim007
selim007

ASKER

my email data are sent as follow:

HELO xxx.xxx.xxx.xxx
MAIL FROM:<myemail@myisp.com>
RCPT tO:<destinationmail@destdomain.com>
DATA
FROM:<myemail@myisp.com>
TO:<destinationmail@destdomain.com>
SUBJECT:subject
MIME-Version: 1.0
Content-Type: multipart/mixed;boundary= "KkK170891tpbkKk__FV_KKKkkkjjwq"


--KkK170891tpbkKk__FV_KKKkkkjjwq
Content-Type: text/plain; charset=US-ASCII

Message body goeas here

--KkK170891tpbkKk__FV_KKKkkkjjwq

Content-Type: application/octet-stream;
Name = "pRandom.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
FileName = "pRandom.zip"


MIME Encoded data goes here

--KkK170891tpbkKk__FV_KKKkkkjjwq--
Look in the headers for the Mailer field.  I'd guess they're filtering on that.
is there something specific to look for ?
ASKER CERTIFIED SOLUTION
Avatar of cookre
cookre
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you cookre you solved my problem

regards