Here area my relationships:
Account has_many :emails
Email has_many :recipients
Email belongs_to :account
Recipient belongs_to :email
What I want to do is count how many recipients any given account has.
Here area my relationships:
Account has_many :emails
Email has_many :recipients
Email belongs_to :account
Recipient belongs_to :email
What I want to do is count how many recipients any given account has.