|
|
| |
1. email_message class |
|
Reply |
|
|
 Paul Graham | 2012-07-30 17:23:09 |
Hello,
Are there any attachment size limits with the email_message class?
My ISP says the server allows up to 10 mb of attachments but I can not send 2 4 mb attachments?
I am using
require("email_message.php");
require("smtp.php")
Other than that everything works fine.
Thanks
|
| |
2. Re: email_message class |
|
Reply |
|
|
 Manuel Lemos | 2012-07-30 21:15:52 - In reply to message 1 from Paul Graham |
| It depends on the memory limits of your PHP configuration as currently the class composes the message in memory before sending. Take a look at the output of phpinfo() to know the current memory limit. |
| |
3. Re: email_message class |
|
Reply |
|
|
 Paul Graham | 2012-07-30 21:36:08 - In reply to message 2 from Manuel Lemos |
My max_upload and max_post sizes in php.ini are 20M
The memory_limit 32M
This sounds like more than enough?
|
|