hi, I am reminded that I have fixed an error in the get * time function call.
When calling the libpff_messageget " time function inside the get * _ time function, it seems that an error occurred because an invalid parameter was passed as follows.
...
result = libpff_message_get_delivery_time(
pypff_item->record_set,
&filetime,
&error );
...
So I fixed it as follows and it worked normally. If you have resolved the bug, please check again.
...
result = libpff_message_get_delivery_time(
pypff_item->item,
&filetime,
&error );
...
And I'm wondering how to use attachments object calls. Currently it says that it should be called with attachments or get_attachment (index).
hi, I am reminded that I have fixed an error in the get * time function call. When calling the libpff_messageget " time function inside the get * _ time function, it seems that an error occurred because an invalid parameter was passed as follows.
So I fixed it as follows and it worked normally. If you have resolved the bug, please check again.
And I'm wondering how to use attachments object calls. Currently it says that it should be called with attachments or get_attachment (index).