550 5.7.1 Client does not have permissions to send as this sender (office365)

91,187

Solution 1

Beware that this error might also occur when the from email does not match the username.

So, be sure to test the value [email protected] is the same on user and from.

If it works when both fields have the same value and doesn't work when the from is different from the user, it means you should contact the company responsible for the email server and ask them to create a shared account and add SendAs priviledges for the account.

Solution 2

go the the Exchange management console and select the user. Right Click, go to the send as permissions option.. check that User NT AUTHORITY\SELF is listed. If not add it.

Solution 3

Answer provided by Luis Cruz is the right one.. However, I will try to be more descriptive though,

We were trying to send mail in Mantis Bug Tracker through Office 365 account and were facing the same issue. Below was the config,

$g_enable_email_notification = ON;
$g_phpMailer_method          = PHPMAILER_METHOD_SMTP;
$g_smtp_host                 = 'smtp.office365.com';
$g_smtp_username             = '[email protected]';
$g_smtp_password             = '****';
$g_smtp_connection_mode      = 'tls';
$g_smtp_port                 = 587;

Clearly what we were missing was the 'from' property. Adding following properties resolved the issue,

$g_from_name               = 'Mantis Admin';
$g_from_email              = '[email protected]';
$g_return_path_email       = '[email protected]';

Solution 4

There can be many reason for this issue, One of this is which is most frequently comes because

Login name and From address is not same.

Login = 'abc@gmailcom' FROM = 'abc@gmailcom'

Now use these variables, It will work.

Share:
91,187

Related videos on Youtube

roanjain
Author by

roanjain

Updated on July 05, 2020

Comments

  • roanjain
    roanjain almost 4 years

    i m trying to send email with following configuration

    Host: smtp.office365.com

    port: 587

    user: "[email protected]"

    pass: "mypassword"

    i m getting the following exception :

    550 5.7.1 Client does not have permissions to send as this sender

    i have gone through many forums that told me to set send as permission for mailboxe but i m not able to find any such configuration in oulook web app...or do i need to configure it somewhere else and if it so then where..???....i have only used above configuration for sending mails and have not done any config with outlook web app...what all i need to change and configure in my outlook web app ....

  • Martin
    Martin about 9 years
    I also have this issue, although not with office365, but would this approach work on a wider issue of sending from a mailserver address?
  • Ibrahim Azhar Armar
    Ibrahim Azhar Armar over 6 years
    This was the issue with me.
  • chozha rajan
    chozha rajan over 6 years
    thanks lot it's work for me @So, be sure to test the value [email protected] is the same on user and from.
  • Pranav Nandan
    Pranav Nandan about 6 years
    This works. I was not providing To and From properly.
  • Sohel Pathan
    Sohel Pathan almost 6 years
    Your answer helped me. I had the same case of different "from" and "user" parameter. +1
  • Ken
    Ken almost 4 years
    I do not know why this must be set to match - as from fields are simply that and have nothing to do with the authenticated user. If you can authenticate - who cares what name is in the from field. I know not your issue just my rant. If I want to spam with the authenticated user ok , if I want to with 50 million other names same difference - I have access and can send emails. The authenticated user is what should count!