Smtp?

Does anyone use SMTP and O365? Our setting don’t seem to be working; I am hoping someone can help out with this.

Capture

Those settings look right (they match ours and ours works). It’s going to be a setting in office 365. You did set up that e-mail in your office 365 right?

I wonder if I need to do an IISReset after I made the change…

image
https://epiusers.help/t/iisreset-the-almost-never-good-the-bad-and-the-ugly/36958?u=aidacra

1 Like

We didn’t need to. I could change the e-mail address at will without any kind of restart, as long as either one was set up in 365.

Edit: Ha, I just realized that I didn’t know the difference between recycle and reset. I just always use recycle.

You have to Reset task agent. after updating email settings.

Piggybacking off this question: is is possible to use these SMTP settings/account against some sort of native mailer class in custom code?
I have in the past just created my own SMTP client in the code, but this required hard coding the o365 creds into the code which is obviously not ideal.

Found the issue.

When the Email is being created we need to use the donotreply@embedtek.net user as the From

Capture

Or just leave that blank and it will default to the company setting.

1 Like

PS: The only Reason I have my own GetCompanyAddressAction is because it was getting the wrong Company if left blank in a Multi-Company Environment in 10.1.500.x

3 Likes

Cool example. Have you seen this done outside a BPM like in a form customization though?

You mean something like

var args = new EmailArgs("fromAddress@xyz.com", "to@xyz.com", "cc@xyz.com", "The best subject ever", "Message");
// args.Priority, args.Attachments, args.Address
EmailHandler.SendMail(args);

The Epicor Client Library has a few helpers which are used by other Send Email Dialogs.

1 Like

oo that’s cool, I’ll have to check that out! Thanks man

office 365 not allowing anonymous relay due to security so you cannot change from address. if you want enable anonymous relay. follow this link Allow anonymous relay on Exchange servers | Microsoft Learn

1 Like