I notice that:
- Title is a free text (Varchar) field instead of an Enum
- The primary email address is attached to the Contact, not to a joining table or middleman object, which means if a Contact is associated with multiple Accounts, it may pick the wrong email address
Two questions:
- Is there a way to allow the email to be in the middle and attached to both the Contact and the relevant Account?
- Is there a way to make a custom override that changes the Varchar out with a list of predefined contact Titles (enum)?
- Title is a free text (Varchar) field instead of an Enum
- The primary email address is attached to the Contact, not to a joining table or middleman object, which means if a Contact is associated with multiple Accounts, it may pick the wrong email address
Two questions:
- Is there a way to allow the email to be in the middle and attached to both the Contact and the relevant Account?
- Is there a way to make a custom override that changes the Varchar out with a list of predefined contact Titles (enum)?
Comment