RentManager.getProspects(
["ProspectID","Name","Email","InterestLevel","Property.Name"],
["InterestLevel,gt,5"]
)
GmailApp.sendEmail(
"recipient@domain.com",
"Weekly Delinquency Report",
"Hi <Recipient Name>, please see attached delinquency report"
)
function myFunction() {
GmailApp.sendEmail(
"youremail@domain.com",
"Subject goes here",
"This is a test message. Let's see if it worked!"
)
}
1So_UTHnLfhLILaoW-S9CV_BJqwHpN8XX1ru9aQe3drhyjFIjvLyX1xaG
Note: it may say a number bigger than 19 under Version for you and that's okay.
function myFunction() {
RentManager.setCorpId("your_company_code")
let high_interest_prospects = RentManager.getProspects(
fields=["ProspectID","Name","Email","InterestLevel","Property.Name"],
filters=["InterestLevel,gt,5"]
)
Logger.log(high_interest_prospects)
}
RentManager.setCorpId("your_company_code")
let high_interest_prospects = RentManager.getProspects(
fields=["ProspectID","Name","Email","InterestLevel","Property.Name"],
filters=["InterestLevel,gt,5"]
)
RentManager.logAvailableFields("Tenant")
RentManager.logAvailableFilters("Tenant")