Note: You are responsible for configuring your email setup. The method below has been provided to assist you when settings up Office 365 SMTP configuration. These steps may not work for everyone, depending on your individual email configuration, and we will not be responsible for troubleshooting any issues that arise.   

To utilize Office 365 SMTP configuration, a permission needs to be set in Powershell. Powershell is a way to control Office 365 with a command prompt. 


Step      Action

  1.        In windows, search for Powershell.

  2.        Right click on Powershell and then left click 'run as administrator' from the drop-down

  3.        Paste in the following code and hit {Enter}.


$UserCredential = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid-Credential$UserCredential -Authentication Basic -AllowRedirection

Import-PSSession $Session


  4.       Enter your Office 365 email address and password in the dialogue box.


Important: This user MUST have admin privileges over the Office 365 account. If you log into the outlook portal on the web and don't see an admin tab, the account is not an administrator. 


Result: You should see a window telling you that you're logging in, then there will be no other messages and you'll be returned to the command line


  5.     Paste in the following code and hit {Enter}.


Add-RecipientPermission user1 -AccessRights SendAs -Trustee user2   


user1 = username you want to send as

user2 = username of the email you've entered into Integrations on Docketmanager.


Note: A Username is the email address without the @domain.com. 


ie, if xyzprint.com entered noreply@xyzprint.com into the DocketManager Integrations, but they also wanted Docketmanager to send from bob@xyzprint.com, the command would be: 


Add-RecipientPermission bob -AccessRights SendAs -Trustee noreply   


Result: Prompt will appear to confirm the action. 


  6.      Type ‘y’ and hit {Enter}. 


Result: A confirmation similar to that listed below should appear.


Identity Trustee AccessControlType AccessRights Inherited

-------- ------- ----------------- ------------ ---------

bob_2619bcd7bf noreply Allow             {SendAs}     False


  7.     Close Powershell.


 Note: This setup is not instantaneous. Allow up to 1 hour before testing. 


To add multiple addresses, just repeat steps above for each additional address.