Encompass – The following code creates a new custom event on every Borrower Contact to indicate that a marketing email was sent to them.

The following code creates a new custom event on every Borrower Contact to indicate that a marketing email was sent to them. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.Query; using EllieMae.Encompass.BusinessObjects.Contacts; class ContactManager { public static void Main(string[] args) { // Open the session to the remote server Session session = new …

Encompass – code creates a new appointment to meet with a contact

The following code creates a new appointment to meet with a contact. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Calendar; using EllieMae.Encompass.BusinessObjects.Contacts; using EllieMae.Encompass.Query; class ContactManager { public static void Main(string[] args) { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Create a new …

Encompass – Viewing TPO Loans

Viewing TPO Loans After a loan is submitted via a TPO Connect website, authorized users can open their Pipeline and view the loan. The Company filter with Internal Organization and TPO options enable users to view only the loans originated in Encompass or only the loans submitted by the TPO contacts. Use the TPO filter …

Encompass – HTML Email Templates

HTML Email Templates Administrators can use the HTML Email Templates setting to set up company-wide templates for HTML emails that can be sent from the eFolder when requesting documents via the Request button, sending eDisclosures via the eDisclosure button, or sending files via the Send button. Encompass ships with one template for each category: document …

Encompass appraisal documents attachment by coding

The following code creates a new attachment to the loan and associates it with an existing Appraisal. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Loans; using EllieMae.Encompass.BusinessObjects.Loans.Logging; class LoanReader { public static void Main() { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Open …

Tracked document Encompass – showing all attachments of a loan file using coding

The following code exports all of the attachments associated with the Appraisals in a loan. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Loans; using EllieMae.Encompass.BusinessObjects.Loans.Logging; class LoanReader { public static void Main() { // Open the session to the remote server Session session = new Session(); session.Start(“myserver”, “mary”, “maryspwd”); // Open and lock …

Organization hierarchy and Encompass development coding

The following code demonstrates how to display the entire organization hierarchy. using System; using System.IO; using EllieMae.Encompass.Client; using EllieMae.Encompass.BusinessObjects; using EllieMae.Encompass.BusinessObjects.Users; class UserManager { public static void Main() { // Open the session to the remote server. We will need to be logged // in as an Administrator to modify the user accounts. Session session …

Persona and pipeline view

Create the default Pipeline view for the persona by configuring the columns that display on the Pipeline, the order in which they appear, the sorting order for the loan entries, and by applying search filters to the Pipeline data. 1In the Pipeline Views section, click the New icon. 2 Select Create a new, empty Pipeline …