Send email from server without creating new Office 365 user account/mailbox

exchangemicrosoft-office-365

We've just moved to Office 365 as it's cheaper than our previous email provider. Email addresses all work for our users, now we need more control.

We need to send automated emails from our backend. We don't want to pay for a new user seat for each email address we might need to send as. How can we configure the Exchange server or Office 365 to allow us to do so?

Best Answer

The "From" and "Reply to" addresses, when sent via SMTP, can be literally anything you want them to, as long as you use SMTP authentication from your backend via a single account. I don't believe that O365 will let you configure anonymous relay.

Of course, to send email, you don't need to send through your O365 instance at all. You could just, you know, send the mail. Your backend applications could send mail directly, or you configure an SMTP relay on your network for your backend to use, and then that relay would just send the mail to the intended recipients.

Or as EEAA suggested, you can use a hosted email relay service.

Related Topic