Page 1 of 1

maximum e-mail size

Posted: Wed Nov 06, 2019 6:33 pm
by GOT intermedia
Hello all,

in "Send Mailing" there's "max. e-mail size" that seems to have a value of 10 MByte:
"The max size of your mailing exceeds a limit (10 MByte). Please reduce the number of images or the size of the files."
Where does that value come from an how can we change it if necessary?

Thanks in advance!

Re: maximum e-mail size

Posted: Fri Nov 08, 2019 10:14 am
by maschoff
Create a new entry in table company_info_tbl with

company_id = 0
cname = company.mailingSizeErrorThresholdBytes
cvalue = <max mail size in bytes>

You can find the default values of OpenEMM in the source code in class ConfigValue.java.

Re: maximum e-mail size

Posted: Mon Nov 11, 2019 10:39 am
by GOT intermedia
maschoff wrote: Fri Nov 08, 2019 10:14 am Create a new entry in table company_info_tbl with

company_id = 0
cname = company.mailingSizeErrorThresholdBytes
cvalue = <max mail size in bytes>

You can find the default values of OpenEMM in the source code in class ConfigValue.java.
Thank you!