1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 14:00:56 +01:00

No longer send welcome mail from a real user.

Summary: Remove lines that set from field.

Test Plan: Check that emails are sent without from field.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin, AnhNhan

Differential Revision: https://secure.phabricator.com/D5845
This commit is contained in:
Bryan Cuccioli 2013-05-06 14:00:40 -07:00 committed by epriestley
parent ace8ac83ef
commit c5692bb9bf

View file

@ -590,7 +590,6 @@ EOBODY;
->addTos(array($this->getPHID()))
->setSubject('[Phabricator] Welcome to Phabricator')
->setBody($body)
->setFrom($admin->getPHID())
->saveAndSend();
}
@ -630,7 +629,6 @@ EOBODY;
->addTos(array($this->getPHID()))
->setSubject('[Phabricator] Username Changed')
->setBody($body)
->setFrom($admin->getPHID())
->saveAndSend();
}