邮件附件中的附件为空
The attachments is empty in mailmessageattachments
当我执行如图所示的查询时,附件总是空的。我希望名称为 AttachmentFileName
的附件的内容位于 Attachment
.
列中
如何检索文件的 blob?
select /*+ join_set(mat, mailmessageid, 5000) */ mat.Attachment xmlfilecontents
, mat.division || '-' || AttachmentFileName filename
from mailmessagesreceived mre
join MailMessageAttachments mat
on mat.mailmessageid = mre.id
and mat.Type in ( 20, 22 ) /* 20: UBL 2.0, 22: Simplerinvoicing 1.0 */
where mre.SenderMailbox = 'Facturen@ExactOnline.nl'
and mre.created >= add_months(trunc(sysdate, -1), -10)
and mat.FileSize > 0
列 Attachment
存储与收到的 Exact Online MailMessage
直接关联的附件,只要邮件消息尚未处理。在这种情况下,附件将转发到 Documents
.
但是,Exact Online 发票本身是间接检索的。 Internet 位置在字段 Url
中。它也可以在 table 中使用列 AttachmentFromUrl
.
当我执行如图所示的查询时,附件总是空的。我希望名称为 AttachmentFileName
的附件的内容位于 Attachment
.
如何检索文件的 blob?
select /*+ join_set(mat, mailmessageid, 5000) */ mat.Attachment xmlfilecontents
, mat.division || '-' || AttachmentFileName filename
from mailmessagesreceived mre
join MailMessageAttachments mat
on mat.mailmessageid = mre.id
and mat.Type in ( 20, 22 ) /* 20: UBL 2.0, 22: Simplerinvoicing 1.0 */
where mre.SenderMailbox = 'Facturen@ExactOnline.nl'
and mre.created >= add_months(trunc(sysdate, -1), -10)
and mat.FileSize > 0
列 Attachment
存储与收到的 Exact Online MailMessage
直接关联的附件,只要邮件消息尚未处理。在这种情况下,附件将转发到 Documents
.
但是,Exact Online 发票本身是间接检索的。 Internet 位置在字段 Url
中。它也可以在 table 中使用列 AttachmentFromUrl
.