在Podio中设置项目电子邮件字段

时间:2017-03-16 14:14:04

标签: email field podio

我很难猜测如何设置商品电子邮件字段值,因为文档中没有任何内容(http://podio.github.io/podio-php/fields/

我试过了:

$item->fields['email']->values = array("type"=>"work","value"=>"a@a.com");
$item->fields['email']->values = array("value"=>"a@a.com");
$item->fields['email']->values = "a@a.com";

$item->fields[$field_id]->value ="i@i.com";
$item->fields[$field_id]->type ="work";

$item->save();

什么都行不通,请帮忙!谢谢!

1 个答案:

答案 0 :(得分:3)

我已经弄清楚了,这里的代码是有效的(如果有人遇到同样的问题)

$field_id = 'email';
$emails=$item->fields[$field_id]->values;
$item->fields[$field_id]->values =array('value'=>"i@oooo.com",'type'=>'work');

$item->save();