提问者:小点点

应用日期时间过滤器获取列表邮件在gmail使用gmailAPI


我正在使用GMAILAPI在日期范围内获取消息。我的问题是我的一个客户帐户的显示日期时间和实际接收日期/发送日期时间不同。有没有办法读取时区UTC消息?

谢谢,哈西娜


共2个答案

匿名用户

有一个影响搜索查询中日期时区的公开问题。不幸的是,目前没有解决方法。

匿名用户

$newTime = strtotime('-15 day');
$after = strtotime(date('Y-m-d H:i:s', $newTime));

$opt_param = array();

$userId = 'me';
$opt_param['q'] = "after:$after";

$messagesResponse = $service->users_messages->listUsersMessages($userId, $opt_param);