[RBASE-L] - RE: Email with attachment

2019-04-16 Thread Lena Dammstrom
Dan,
Thank you, thank you, thank you.

This did indeed resolve my issue

Regards
Lena

From: rbase-l@googlegroups.com  On Behalf Of Dan 
Goldberg
Sent: Tuesday, April 16, 2019 10:10 AM
To: rbase-l@googlegroups.com
Subject: [RBASE-L] - RE: Email with attachment

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  +
  |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: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> On Behalf Of Lena 
Dammstrom
Sent: Tuesday, April 16, 2019 8:01 AM
To: rbase-l@googlegroups.com
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: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> On Behalf Of Dan 
Goldberg
Sent: Tuesday, April 16, 2019 9:22 AM
To: rbase-l@googlegroups.com
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  +
  |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: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> On Behalf Of Lena 
Dammstrom
Sent: Tuesday, April 16, 2019 7:13 AM
To: rbase-l@googlegroups.com
Subject: [RBASE-L] - Email with attachment

Hi all,
Is there a size limitation in RBaseX version 10.0.4.3 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  +
  |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 
rbase-l+unsubscr...@googlegroups.com.
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 
rbase-l+unsubscr...@googlegroups.com.
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 
rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
For group guidelines, visit 

[RBASE-L] - RE: Email with attachment

2019-04-16 Thread Lena Dammstrom
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: rbase-l@googlegroups.com  On Behalf Of Dan 
Goldberg
Sent: Tuesday, April 16, 2019 9:22 AM
To: rbase-l@googlegroups.com
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  +
  |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: rbase-l@googlegroups.com 
mailto:rbase-l@googlegroups.com>> On Behalf Of Lena 
Dammstrom
Sent: Tuesday, April 16, 2019 7:13 AM
To: rbase-l@googlegroups.com
Subject: [RBASE-L] - Email with attachment

Hi all,
Is there a size limitation in RBaseX version 10.0.4.3 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  +
  |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 
rbase-l+unsubscr...@googlegroups.com.
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 
rbase-l+unsubscr...@googlegroups.com.
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 rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[RBASE-L] - Email with attachment

2019-04-16 Thread Lena Dammstrom
Hi all,
Is there a size limitation in RBaseX version 10.0.4.3 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  +
  |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 rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.