Link to home
Start Free TrialLog in
Avatar of FDiskWizard
FDiskWizardFlag for United States of America

asked on

How can an SMTP Mailer application properly form an email so that Outlook resolves the FROM to internal user,etc?

I had this issue with some developers a while back, where their emails went to Outlook’s Junk E-mail folder. Even though it was from an internal email address, Outlook treated it as Internet email because it was just the email address.
So, I told them to try sending with the Mail from: and the FROM: Display Name….
That seemed to work.

Now we have some web app sending emails and it is doing the same – going to Outlook’s Junk E-mail folder.
I would rather try to find a solution on the mailer side, instead of trying to add it to safe senders on all PCs.

I’m trying to gather info so I can tell them exactly what should be happening.
From what I gather; to do this via command line, you do it like the below example. See any issues with that syntax?
(Note: Webapp@ourdomain.com is a valid distribution list address, we 3 dev dudes on it.)
 
helo ourdomain.com
mail from: webapp@ourdomain.com
rcpt to: Joe.user@@ourdomain.com
data
To: Joe User <joe.user@ourdomain.com>
From: Web App <webapp@ourdomain.com>
Subject: Please respond to our survey

Please take a moment to respond to our survey
 
.

Open in new window


When it hits Outlook it just displays as shown:   Web App <webapp@ourdomain.com>
The properties just show the SMTP properties as if it was internet email.

Any suggestions?
Avatar of DMTechGrooup
DMTechGrooup
Flag of United States of America image

What version of exchange are you using?  Canyou provide a screen shot of what it looks like in Outlook.  Also how about the header information from an email?

Thanks.
Avatar of Jian An Lim
i have a bad feeling is the Outlook kicks in.

one thing you can do is to ask your telnet application to authenticate to the server, so the email was sent as an authenticated users rather then non-authenticated.

non-authenticated trigger a potential that it would be


X-MS-Exchange-Organization-SCL: -1 <--- exchange tell them it is safe and trusted


Outlook 2007 onwards usually observes this settings.





As described, this isn't an SMTP mailer problem, but an Outlook problem.  

There's also no information on what language or tools are being used to generate the SMTP maiil.  I can say that in .Net, creating an SMTP mail object with a sender formatted like...
   objMail.From = New Net.Mail.MailAddress("PenSoft Weekly Free Software Drawing <Info@PenSoft.com>")
...is valid, and would seem to sidestep the problem you're experiencing.  This same format may or may not work with other SMTP mailers.
ASKER CERTIFIED SOLUTION
Avatar of FDiskWizard
FDiskWizard
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
Avatar of FDiskWizard

ASKER

Answered my own question.
This fixes Outlook filtering of emails created in-house via SMTP.