浏览代码

Added total new listings to subject line of email for easier user experience.

Miek Stagl 5 年之前
父节点
当前提交
fca2dd5a56
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      index.py

+ 1 - 1
index.py

@@ -343,7 +343,7 @@ class MLSDATA:
   def email(self):
     body = ''
     data = []
-    subj = "New Real Estate Listings for " + str(datetime.date.today())
+    subj = str(len(self.new_listings)) + " New Real Estate Listings for " + str(datetime.date.today())
     for listing in self.new_listings:
       row = []
       body += listing.MLS + " | " + listing.address + " | " + listing.acres + " | " + listing.price + " | " + listing.link + "\n"