• 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: Send Email to Recipients Listed in a Drop Menu

Re:Send Email to Recipients Listed in a Drop Menu 12 years 11 months ago #13499

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 722
  • Thank you received: 59
Hello,

If I understand correctly you want to use a pipe when generating the second dropdown. In order to achieve this you will need to make some adjustment to the script by replacing:
// Add the options
for(var i=0;i<parent_array[parent_value].length;i++)
{
thechild.options[i].text = parent_array[parent_value][i];
thechild.options[i].value = parent_array[parent_value][i];
}

with this ones:
// Add the options
for(var i=0;i<parent_array[parent_value].length;i++)
{
var x = parent_array[parent_value][i].split('|');
 
thechild.options[i].text = x[1];
thechild.options[i].value = x[0];
}
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:Send Email to Recipients Listed in a Drop Menu 12 years 6 months ago #15145

i have the same issue with dynamic dropdown with email recipients.. have you manage to find the solution?
The administrator has disabled public write access.

Re:Send Email to Recipients Listed in a Drop Menu 12 years 3 weeks ago #16936

moldygrrl@gmail.com wrote:
But with cloaking disabled on the whole site anytime you list your email it could be picked up by spambots? Is this the only solution?

I know this was posted a long time ago but since I didn't see an answer to this specific question, I thought I'd reply to let people know that there's a way to disable on just one page. Put the following in the text of the article where you are embedding rsform (before the {rsform #} tag):

{emailcloak=off}

See docs.joomla.org/Screen.plugins.edit.15#Content_-_Email_Cloaking
The administrator has disabled public write access.

Re: Send Email to Recipients Listed in a Drop Menu 11 years 6 months ago #19405

  • Moosegun
  • Moosegun's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
I have a question on a similar topic, I want to set up a form which sends emails to different users depending on the option selected in the drop, which I can work out how to do. The issue is though that I want to also send value within the dropdown within the email and I cant work out how to do it.
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!