因此,我很晚才与糖业委员会广泛合作,我需要能够显示最后一次联系点被电子邮件到来,以及根据早前的联系被电子邮件查询。
我可以轻而易举地树立逻辑,以获得最后的电子邮件日期,但我无法根据这一日期的价值进行查询。
因此,我看着搜索场。 The php and found the following Code whichoch have the email of the Liaison.
email =>
array (
query_type => default ,
operator => subquery ,
subquery => SELECT eabr.bean_id FROM email_addr_bean_rel eabr JOIN email_addresses ea ON (ea.id = eabr.email_address_id) WHERE eabr.deleted=0 AND ea.email_address LIKE ,
db_field =>
array (
0 => id ,
),
),
我决定利用这一数据建立一个新阵列,其代码如下,以达到最后的电子邮件日期。 显然,如果接触经过多次电子邮件,需要加以分类,或者需要做些事情才能获得最后一份电子邮件。
last_email_c =>
array (
query_type => default ,
operator => subquery ,
subquery => SELECT e.date_sent FROM emails e WHERE e.parent_type = Contacts AND e.parent_id = {0} ,
db_field =>
array (
0 => id ,
),
),
我的问题是,我不知道与这一新的分局有何关系,我在清单和查询表中做了检查,不能发现任何提及这两个习俗的搜索领域。
我失踪了什么?