T
TheanKeong
Hi,
I have written some codes in VB whereby it will add UserProperties into
MailItems the moment it is being opened and set some values into it.
The code example is as below:
Public Function uf_add_properties(arg_mailitem As MailItem) As Long
Dim l_udf As UserProperty
Set l_udf = arg_mailitem.UserProperties.Add("UDF_1", olYesNo)
End Function
Being successful in adding the userproperties to my mailitem ,
then i proceed with testing my code by sending an email with a bmp
attachment to my recipient of Outlook Express. Unfortunately Outlook
Express recipient could not see my attachment at all.
When i remove my code (which resulted in the UserProperties not being
added), the attachments issues does not arise.
Is there any complications with sending attachments to Outlook Express
if we have UserProperties being added into a mail item?
I have being told that Modified Form or One Off Form might have such
symptoms but since i added the UserProperties through runtime, does it
still being considered a One Off Form ?
Thanks
Kwan
I have written some codes in VB whereby it will add UserProperties into
MailItems the moment it is being opened and set some values into it.
The code example is as below:
Public Function uf_add_properties(arg_mailitem As MailItem) As Long
Dim l_udf As UserProperty
Set l_udf = arg_mailitem.UserProperties.Add("UDF_1", olYesNo)
End Function
Being successful in adding the userproperties to my mailitem ,
then i proceed with testing my code by sending an email with a bmp
attachment to my recipient of Outlook Express. Unfortunately Outlook
Express recipient could not see my attachment at all.
When i remove my code (which resulted in the UserProperties not being
added), the attachments issues does not arise.
Is there any complications with sending attachments to Outlook Express
if we have UserProperties being added into a mail item?
I have being told that Modified Form or One Off Form might have such
symptoms but since i added the UserProperties through runtime, does it
still being considered a One Off Form ?
Thanks
Kwan