• 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: Attaching Mulitple PDF's to User Emails

Attaching Mulitple PDF's to User Emails 8 months 4 weeks ago #43568

  • john925
  • john925's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
Hi there, I have created a form which when the user completes it will send them a PDF from our server which is great. Is there a way to be able to add multiple files, typically PDF's to the user email?
The administrator has disabled public write access.

Attaching Mulitple PDF's to User Emails 8 months 3 weeks ago #43571

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 630
  • Thank you received: 114
Hello,

A good starting point for achieving your scenario can be found in this article.
The administrator has disabled public write access.

Attaching Mulitple PDF's to User Emails 5 months 1 week ago #43728

  • john925
  • john925's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
I there, I'm strill trying to figure out the code to the addition of the 2nd PDF and have tried to follow your instructions.

we have a form: 'MCC Mango Sign up 2024

On the form we have a Yes / no selection radio group called EULA_Accpetance that we want to use as the trigger. When they select yes it will attach the PDF

I have tried this code but it doens't attach anything.

if($_POST[0] == '1')
$userEmail[] = JPATH_SITE.'//path to my pdf.pdf';

can you give me more of adirection for this? What am I missing?
The administrator has disabled public write access.

Attaching Mulitple PDF's to User Emails 5 months 1 week ago #43729

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 630
  • Thank you received: 114
Hello,

If your radio field is crafted like this:
1|Yes
2|no

..you can use a similar PHP code:
if($_POST['form']['EULA_Accpetance'] == '1')
$userEmail['files'][] = JPATH_SITE.'/path to my pdf.pdf';
The administrator has disabled public write access.

Attaching Mulitple PDF's to User Emails 5 months 1 week ago #43730

  • john925
  • john925's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
Hi there,

thanks for this, I now have it working.
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!