Problem/Issue 5351
 
Query for PDR ID
Example: search for PDR ID 109-9999 , just enter 9999 into the entry field and press ENTER.
Open Build: Open Date: Language:
1.82.305 18.03.2004 (All)
Closed Build: Close Date: Platform:
1.82.306 20.04.2004 WIN32
State: Reference PDR ID: Hotfix Rollup No.:
CLOSED    
Symptom:
content encoding not sufficient
Description:
I am trying to automate sending an access file to users on a monthly basis
with the following code.

   aRecipient:={xxx@xxx.com}
   cFileName:=aPaths[1]+"\temp\inventory.mdb"
     FOR X=1 TO LEN(aRecipient)
       oMail:=MIMEMessage():New()
       oMail:setFrom     ( MailAddress():New(xxx@xxx.com) )
       oMail:setSubject  ( "Monthly Inventory Report" )
       oMail:setMessage  ( "Attached is the Monthly InventoryReport
auto-generated." )
       oMail:setContentTransferEncoding("base64")
       oMail:setContentType("application/msaccess")
       oMail:AttachFile  (cFileName)
       oMail:addRecipient( MailAddress():New(aRecipient[X]) )
     SMTPSEND(oMail,"x.x.x.x")
     oMail:=NIL
   NEXT

The message is received but the attachment is corrupt. This is due to the
fact that files with extensions unknown to the Asinet library are encoded
with quoted printable encoding by default.



Solution:
Fix available with PFL182306

Workaround:

Send file as zip archive.

 
(C) Copyright Alaska Software Inc. 2008, All rights reserved!
Disclaimer, Limitation of Liability, no Warranty: THE INFORMATION, DOCUMENTS, FILES AND MATERIALS CONTAINED IN THIS SITE ARE PROVIDED "AS IS". ALASKA SOFTWARE DOES NOT WARRANT THE ACCURACY, ADEQUACY OR COMPLETENESS OF THIS INFORMATION AND MATERIALS; THUS EXPRESSLY DISCLAIMS LIABILITY FOR ERRORS OR OMISSIONS IN THIS INFORMATION AND MATERIALS.
WARRANTIES OF ANY KIND, IMPLIED, EXPRESSED OR STATUTORY, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF NON-INFRINGEMENT OF THIRD PARTY RIGHTS, TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR RESOLVEMENT-CLAIMS, ARE DISCLAIMED.