diff --git a/wrenchboard/email/ACCOUNT/member_welcome.mailfile b/wrenchboard/email/ACCOUNT/member_welcome.mailfile index da62d765..7fd60673 100644 --- a/wrenchboard/email/ACCOUNT/member_welcome.mailfile +++ b/wrenchboard/email/ACCOUNT/member_welcome.mailfile @@ -68,20 +68,20 @@ Dear {{firstname}}, -Welcome to {{site_name}}, your account is now verified and ready to go. +   Welcome to {{site_name}}, your account is now verified and ready to go. - +
-With {{site_name}}, you can set up a family accounts and reward achievements or set up tasks for others to perform or simply find tasks that rewards you +   With {{site_name}}, you can set up a family accounts and reward achievements or set up tasks for others to perform or simply find tasks that rewards you.
-
+
If you did not initiate this account creation or have any further support question, Please contact us at {{server_name}}/contact
@@ -102,7 +102,7 @@ If you did not initiate this account creation or have any further support questi - +
diff --git a/wrenchboard/src/shared_tool/market.cc b/wrenchboard/src/shared_tool/market.cc index 6dc5785f..f126c8b2 100644 --- a/wrenchboard/src/shared_tool/market.cc +++ b/wrenchboard/src/shared_tool/market.cc @@ -51,7 +51,7 @@ logfmt(logINFO, "WrenchMarketImport()"); try { out["total_record"] = "0"; const PGresult *res; - res = pgsql_query("SELECT id AS import_id,* FROM market_import WHERE status =1 LIMIT 4"); + res = pgsql_query("SELECT id AS import_id,* FROM market_import WHERE status =1 LIMIT 10"); if (res != NULL && pgsql_num_rows(res) > 0) { out["total_record"] = pgsql_num_rows(res); @@ -62,6 +62,7 @@ logfmt(logINFO, "WrenchMarketImport()"); CVars rec; map_to_cvars(f, rec); market_email(WRENCHBOARD_MARKET_PLAN01_START, rec, rec); + pgsql_query("UPDATE market_import SET ecount=ecount+1 WHERE uid::text='%s'", rec["uid"].c_str()); } } ret = PHP_API_OK;