Sending emails from a scanner or web application can always be challenging. You don’t want to use a mailbox (with username and password) for this, but preferable an SMTP server that sends the mail for you. This is where we can use SMTP Relay in Office 365.
The problem with SMTP Authentication these days is that we want to use MFA on all our Office 365 accounts. When we create a dedicated mailbox for sending emails, we still can’t authenticate (and secure) it properly. This is also the reason that Microsoft doesn’t support SMTH AUTH anymore for new tenants created after 2020.
SMTP Relay, on the other hand, allows applications and devices to send email through your Exchange Online mail server. Protection is done based on your public IP Address(es), allowing only applications and devices from your network to use the SMTP Relay connection.
In this article, I will explain how you can set up an SMTP Relay in Office 365 and the difference between Direct Send and SMTP Relay.
SMTP Relay vs Direct Send in Office 365
Before we take a look at how to set up SMTP Relay in Office 365, I first want to explain to you the difference between SMTP Relay and Direct Send. Because both use the MX endpoint as an SMTP server address, but they both have their own use case.
Direct Send in Office 365 is used to deliver email to only your internal mailboxes. This means that you can’t scan a document and email it directly from the scanner to an external email address. You will need to scan it to your own mailbox, and in Outlook forward it to the external contact.
But the advantage is Direct Send is that you can use it also for third-party applications and it doesn’t require a static IP address for authentication.
SMTP Relay on the other hand can be used to send emails directly to external contacts, but only from networks (public IP addresses) that you have defined.
Features | Direct Send | SMTP Relay |
---|---|---|
Send to internal recipients | Yes | Yes |
Send to external recipients | No | Yes |
Support externally hosted applications | Yes | No |
Required Network Port | 25 | 25 |
Requires authentication | None | Based on Public IP Address |
Set up SMTP Relay in Office 365
To set up an SMTP Relay we first need to know the public IP Address of the network where the device is located. If you want to use SMTP Relay for your local multifunctional (scanner), then just open the browser and visit myip.com. Note the IP Address, we will need that later.
- Open the Exchange Admin Center
Log in add your Exchange Admin Center and navigate to:
Mail flow > Connectors - Create a new Connector
Click on Add a connector to create a new connector
and choose Your organization’s email server - Connector name
Give the connector a recognizable name and leave the selected options on.
- Configure authentication
The next step is to configure the authentication that we want to use. It’s possible to use a certificate for authentication, but more common is to do the verification based on the public IP Address of the device.
You can define multiple IP Addresses for the connection (useful if you have different offices)
- Review and create the connector
The last step is to review your settings and create the connector. Double-check the IP Addresses and click on Create connector.
To use the connector we will need to look up the MX record for your Office 365 tenant. The value of the MX record is used as SMTP Server Address in your device.
- Open the Microsoft 365 Admin Center
- Expand Settings and click on Domains
- Select your domain
- Click on DNS records
- Open the MX record (by clicking on it)
- Note to Points to address or value field
The format of the value is pretty standard:
# MX Record structure<your-domain>-<domain-extension>.mail.protection.outlook.com# For example:# lazyadmin-nl.mail.protection.outlook.com
Use this address in your scanner or application as SMTP Address.
Update your SPF Record
To prevent the mail from ending up in the spam folder, we will need to edit the SPF record. The SPF record identifies which endpoints (servers) are allowed to send emails on behalf of the domain.
By default your SPF Record looks like this:
v=spf1 include:spf.protection.outlook.com ~all
We are going to add our Public Ip Address to it:
v=spf1 ip4:10.11.12.13 include:spf.protection.outlook.com ~all# or for mutliple IP Addresses:v=spf1 ip4:10.11.12.13 ip4:20.21.22.23 include:spf.protection.outlook.com ~all
Keep in mind that DNS changes can take a couple of hours to apply. But after that, you should be able to send emails using your newly created SMTP Relay Connection.
Edit SMTP Relay Connection
You can use one SMTP Relay connection to send emails from multiple IP Addresses. So you don’t need to create a connection for each branch office that you have for example.
To add an IP Address to an existing connection, we can simply open an existing one:
- Click on the connection
- Click on Edit send email identity
- Add or remove IP Addresses from the connection
Using PowerShell to create SMTP Relay Connection
You can also use PowerShell to create an SMTP Relay connection in Office 365. This is especially useful when you need to create the same SMTP Relay connection in multiple tenants or if you just love to use PowerShell.
Make sure that you are connected to Exchange Online. You can read more about connecting to Exchange Online in this article.
There are a couple of parameters that we need to set:
Parameter | Description |
---|---|
Name | The name of the connector |
ConnectorType | Partner: External partners or services. OnPremises: Your on-premises email organization. |
SenderDomains | Use * to allow all domains in your tenant |
SenderIPAddresses | Your public IP Address(es) |
RestrictDomainsToIPAddresses | Set to true to only allow connection from your sender IP addresses |
You can find all parameters with their description in these Microsoft docs.
So to create the SMTP Relay connector in Office 365 with PowerShell we can use the following code:
New-InboundConnector -Name "SMTP Relay POSH" -ConnectorType = 'OnPremises' -SenderDomains * -SenderIPAddresses 10.11.12.13 -RestrictDomainsToIPAddresses $true
Or a bit more readable:
# Set the parameters$parameters = @{ Name = 'SMTP Relay POSH' ConnectorType = 'OnPremises' SenderDomains = '*' SenderIPAddresses = '10.11.12.13','20.21.22.23' RestrictDomainsToIPAddresses = $true}# Create the SMTP Relay connectorNew-InboundConnector @parameters
Wrapping Up
Keep in mind that you can’t SMTP Relay or Direct send for bulk emails. Microsoft applies reasonable limits to the connection and throttling to protect Microsoft 365 services.
Make sure that you configure the SPF records correctly because this will prevent your emails from ending up in the spam folder.
I hope you were able to create your SMTP Relay connection in Office 365 with this guide. If you have any questions, just drop a comment below.