You might play with the JPEG_QUALITY in the options. It should shrink the picture sizes. Start with 80 and see how they look.
PRINT BreakInsRpt WHERE CustomerBreakinsID = .vbiBreakInID + OPTION PDF + |FILENAME &vbiEReportName + |SHOW_CANCEL_DIALOG OFF + |EMAIL ON + |EMAIL_HOST .vbiESrvHost + |EMAIL_USERID .vbiESrvUser + |EMAIL_PASSWORD .vbiESrvPass + |EMAIL_ATTACHMENTS ' ' + |EMAIL_FROM_ADDRESS .vbiEFromAddress + |EMAIL_FROM_NAME .vbiEFromName + |EMAIL_TO_LIST .vbiEToList + |EMAIL_BCC_LIST .vbiEBCCList + |EMAIL_SUBJECT .vbiESubject + |EMAIL_BODY .vbiEBody + |EMAIL_DELETE_AFTER_SEND OFF + |EMAIL_SHOW_DIALOG OFF + |USE_COMPRESSION ON + |COMPRESSION_METHOD MAXCOMPRESS + |INCLUDE_IMAGES ON + |IMAGE_FORMAT JPG + |PIXELFORMAT 32 + |JPEG_QUALITY 80 From: [email protected] <[email protected]> On Behalf Of Lena Dammstrom Sent: Tuesday, April 16, 2019 8:01 AM To: [email protected] Subject: [RBASE-L] - RE: Email with attachment Dan, Thanks for the suggestion. I tried the compression, and did not help my situation. Probably not compressing enough, due to pictures are being inserted/embedded onto the PDF. Probably why I originally put a link to the pictures instead of the actual pictures. Now they want the actual pictures, so they can print the pdf (with pictures)… Regards Lena From: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> On Behalf Of Dan Goldberg Sent: Tuesday, April 16, 2019 9:22 AM To: [email protected]<mailto:[email protected]> Subject: [RBASE-L] - RE: Email with attachment Usually there is a limit of the email size set by the email provider. You can compress the pdfs to make them smaller. PRINT BreakInsRpt WHERE CustomerBreakinsID = .vbiBreakInID + OPTION PDF + |FILENAME &vbiEReportName + |SHOW_CANCEL_DIALOG OFF + |EMAIL ON + |EMAIL_HOST .vbiESrvHost + |EMAIL_USERID .vbiESrvUser + |EMAIL_PASSWORD .vbiESrvPass + |EMAIL_ATTACHMENTS ' ' + |EMAIL_FROM_ADDRESS .vbiEFromAddress + |EMAIL_FROM_NAME .vbiEFromName + |EMAIL_TO_LIST .vbiEToList + |EMAIL_BCC_LIST .vbiEBCCList + |EMAIL_SUBJECT .vbiESubject + |EMAIL_BODY .vbiEBody + |EMAIL_DELETE_AFTER_SEND OFF + |EMAIL_SHOW_DIALOG OFF + |USE_COMPRESSION ON + |COMPRESSION_METHOD MAXCOMPRESS | Dan Goldberg From: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> On Behalf Of Lena Dammstrom Sent: Tuesday, April 16, 2019 7:13 AM To: [email protected]<mailto:[email protected]> Subject: [RBASE-L] - Email with attachment Hi all, Is there a size limitation in RBaseX version 10.0.4.11113 for attachments? If the PDF size is 3,317KB I receive the email If the PDF size is 10,091KB I do not get the email PRINT BreakInsRpt WHERE CustomerBreakinsID = .vbiBreakInID + OPTION PDF + |FILENAME &vbiEReportName + |SHOW_CANCEL_DIALOG OFF + |EMAIL ON + |EMAIL_HOST .vbiESrvHost + |EMAIL_USERID .vbiESrvUser + |EMAIL_PASSWORD .vbiESrvPass + |EMAIL_ATTACHMENTS ' ' + |EMAIL_FROM_ADDRESS .vbiEFromAddress + |EMAIL_FROM_NAME .vbiEFromName + |EMAIL_TO_LIST .vbiEToList + |EMAIL_BCC_LIST .vbiEBCCList + |EMAIL_SUBJECT .vbiESubject + |EMAIL_BODY .vbiEBody + |EMAIL_DELETE_AFTER_SEND OFF + |EMAIL_SHOW_DIALOG OFF Any clues would be most appreciated. Thank you in advance for your time and consideration. Regards Lena -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. For more options, visit https://groups.google.com/d/optout. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. For more options, visit https://groups.google.com/d/optout. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]<mailto:[email protected]>. For more options, visit https://groups.google.com/d/optout. -- For group guidelines, visit http://www.rbase.com/support/usersgroup_guidelines.php --- You received this message because you are subscribed to the Google Groups "RBASE-L" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

