Email Notifications

  • Thread starter Devendra Bhagat
  • Start date
D

Devendra Bhagat

I had created one project in which my emailID was [email protected]. Later
due to some problem we changed the domain to [email protected].

Now when I assign tasks to the resources it reaches to them perfectly, but
when they reply back to me it still takes [email protected]. The project in
which I had created this mailID has been cleaned up. How do I get over this
problem

Thanks
Devendra
 
S

skumar

Hi
Can you try this..
Go to Tools ->enterprise options open enterprise resource
pool and modify the email id provided there.
S kumar
-----Original Message-----
I had created one project in which my emailID was
[email protected]. Later
due to some problem we changed the domain to [email protected].

Now when I assign tasks to the resources it reaches to them perfectly, but
when they reply back to me it still takes
[email protected]. The project in
 
D

Devendra Bhagat

Dear Kumar
I have already done so but still the problem persists
Devendra
 
D

David Gage - Project MVP

I believe this is because the projects store their own version of all of the
Project Server information since at a fundamental level, Project Pro is
still the root of the system and Project Server was grafted on.

Try running the following query against your database (you may need to get
the assistance of your database admin):
SELECT * FROM MSP_TEXT_FIELDS WHERE TEXT_VALUE = '[email protected]'

If you find some entries, you can update using the following SQL command:
*** NOTE: BE VERY CAREFUL AS DIRECTLY UPDATING THE DATABASE CAN CAUSE
SERIOUS PROBLEMS!!!
UPDATE MSP_TEXT_FIELDS
SET TEXT_VALUE = '[email protected]'
WHERE TEXT_VALUE = '[email protected]'

Let us know if that helps.

David
 
Top