How to check the total number of OutBound messages.

Hello Friends,
is there any way to check the total number of OutBound messages sent to the following addresses for the month?
example : aniyanetworks.net , ourdeen.info, virtualmart.ca

we would like to see to total how many email send to these 3 domain.

Get-TransportServer -identity “exc” | Get-MessageTrackingLog -resultsize unlimited
-Start “03/10/2016” -End “04/07/2016” -EventId Send | where-object {$_.Recipients -like “*@aniyanetworks.net, *@ourdeen.info, *@virtualmart.ca”}

but i am getting any result.
Please advise.
Thank you