Sending, receiving, and organizing email in Outlook.com
I have the same issue. I am running the following powershell script and then go to New Outlook. No signatures are added in Outlook.
I have not tried in OWA as we do not use OWA. Anything that can work with New Outlook would be appreciated.
$mailbox = "*****@someemail.com" # The email address of the user*
$signatureHtmlBody = @"
Best regards,
FirstName LastName
Some Title
My Organization
0123 654 987
"@
$signatureName = "NewSignature" # The name of the signature
Set-MailboxMessageConfiguration -Identity $mailbox -SignatureHtmlBody $signatureHtmlBody -SignatureName $signatureName -DefaultSignature $true -AutoAddSignatureOnReply $true -UseDefaultSignatureOnMobile $true