Office 365 - send email as?

Soldato
Joined
6 Jan 2006
Posts
3,407
Location
Newcastle upon Tyne
Is it possible for a user to send an email from my email address so that it looks for all intense purpose that its came from me?

I had a look a little while ago and there seemed to be a send on behalf of option but I couldn't figure out how to do it as "send as?"
 
this has to be done from Powershell AFAIK. connect as usual with PS and then use

Add-MailboxPermission <mailbox> -User <user or security group> -AccessRights FullAccess

Add-RecipientPermission <identity> -AccessRights SendAs -Trustee <user>
 
add "-Automapping: $False" to the Add-Mailbox command if you don't want to have fun with automapping (which is a nice idea just needs to work better IMHO)
 
Ive never used PowerShell but just downloaded it and already hit a problem.

Im following this guide here and at the Import-Module MsOnline point I get an error which from a quick Google suggests that it could be because PowerShell isnt being ran as the administrator but it defintely is.

Code:
Import-Module : The specified module 'MsOnline' was not loaded because no valid module file was found in any module
directory.
At line:1 char:1
+ Import-Module MsOnline
+ ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (MsOnline:String) [Import-Module], FileNotFoundException
    + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

Any ideas where I am going wrong?
 
You can actually add the send as permission in the exchange admin center on the o365 portal. Edit a mailbox and select the mailbox delegation menu.

It looks like this can only be achieved with Outlook online and not Outlook desktop version?

If not I will try to get the PowerShell option working.
 
Back
Top Bottom