• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Multiple attachments on Emails

Multiple attachments on Emails 6 years 1 week ago #39081

I'm searching an issue for to do multiple files attachments in a mail.

If I select only one file, it's working. But multiple files doesn't work.

I think the solution could be in writing the right files separator, but witch is it ?

Somebody know it and can help me ?

here is my code (PHP user Email script before sending) :
$id = $_GET['s'];
$db = JFactory::getDbo();
$db->setQuery("SELECT pic FROM #__a_cid WHERE cid = '".$id.''");
$pics=$db->loadObjectList();
foreach($pics as $pic) {
	$listpics.=JPATH_SITE."/images/".$pic->pic." ";
}
$userEmail[files] = $listpics;
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!