Send Email with MULTIPLE attachments

I am using the sc_mail_send([glo_smtp], [user], [glo_pw], [from], [to], [subject], [message], ‘H’, [glo_copias], ‘BCC’, ‘587’, ‘N’, {attachments});
where {attachments} = absolute path ( example {attachments}=“http://my-911.com/SACAN/Updating%20your%20profile%20My911.pdf”);

Which works perfectly, however how would I load up {attachments} so that it could include multiple attachments?

[QUOTE=Larryh1115;36334]I am using the sc_mail_send([glo_smtp], [user], [glo_pw], [from], [to], [subject], [message], ‘H’, [glo_copias], ‘BCC’, ‘587’, ‘N’, {attachments});
where {attachments} = absolute path ( example {attachments}=“http://my-911.com/SACAN/Updating%20your%20profile%20My911.pdf”);

Which works perfectly, however how would I load up {attachments} so that it could include multiple attachments?[/QUOTE]

I have no Idea, but since multiple attachments useually takes a lot of space I would recommend packing them in a zip file and attach that single file.

Install phpmailer and do it with that one.
https://code.google.com/a/apache-extras.org/p/phpmailer/wiki/UsefulTutorial#Using_Attachments

You are not forced to use the scriptcase mailer so why not use a better one?

rr - Thanks