[SalesForce] Show html email status under account

Is it possible to show html email status along with activity history related list in accounts? Right now i have to click on the contact then only i can see the html status.

What i have tried:
Adding a custom vf page into account layout.
Problem: I cannot query EmailStatus Object.

Then i though i will add a repeater in that page with account's contacts and add a component which uses standard contact controller and get the EmailStatus related list.

But later i came to know that you cannot use standard contoller with a component.

Best Answer

It looks like you cannot query the object directly but you could query the parent of the EmailStatus, for example the contact and it's children records and filter it by account:

Select Name, AccountId, (Select Id, EmailTemplateName From EmailStatuses) From Contact WHERE AccountId = '0018000000QbytrAAB'
Related Topic