Currently the way we use request creates the multipart message and then sends it off. This requires us to build the message in memory before sending. Large faxes (many page pdfs for example) could be a problem to send. Ideally we'd stream the data one by one out into the request. I'd need to look closer at request's internals to see if it's possible to use it to do it.
Currently the way we use
requestcreates the multipart message and then sends it off. This requires us to build the message in memory before sending. Large faxes (many page pdfs for example) could be a problem to send. Ideally we'd stream the data one by one out into the request. I'd need to look closer atrequest's internals to see if it's possible to use it to do it.