Unfortunately, the username and password you have entered do not match!

Registration

Unfortunately, this username is already taken!

Unfortunately, this e-mail address is already used!

Please retype the verification code.

All fields are required

Emails sent from RSEvent with RSForm integrated

Error
  • Unfortunately, you do not have the permission to view this article.
Welcome, Guest
Username Password: Remember me

Emails sent from RSEvent with RSForm integrated
(1 viewing) (1) Guest
  • Page:
  • 1

TOPIC: Emails sent from RSEvent with RSForm integrated

Emails sent from RSEvent with RSForm integrated 1 year, 5 months ago #11242

I have RSEvents with RSForm integration. When user is registered, there is a confirmation email sent back to him. Email is sent from RSEvents ( I can set design of the email via RSEvents admin ). How can I add fields from submission form which was created via RSForms to this confirmation email? I tried to use placeholders ( e.g. {RSEventsLastName} ) but it is not working at all.

Re:Emails sent from RSEvent with RSForm integrated 1 year, 5 months ago #11275

  • bogdanc
  • OFFLINE
  • Moderator
  • Posts: 629
Hello,

You can consider using the emails sent from RSForm! Pro and so you will be able to use the placeholders from your form in the email messages and so the information will be displayed in the email.

Re:Emails sent from RSEvent with RSForm integrated 1 year ago #12595

How might one do this the other way around?

Send RSEvent data through rsform email response ?

ie. Send the Event name that the user signed up for through to the admin?

would you use a hidden field in the RSform to hold the value of the EventName

//<code>

some code here...

//</code>

Re:Emails sent from RSEvent with RSForm integrated 1 year ago #12679

have had a really good look at this over the last few days.

Really would like to send things like {EventName} {EventDescription}{LocationAddress}, {LocationCity} through the rsform custom form

The email would go to the event creator without having to create a custom event registration form for every event!!!

Currently without saving these values across to the rsform pro table you cant email them to anyone.

So how do you move them?

Trying the following code in the 'Default Value' of a hidden field without much success.

I have no idea formatting php so if anyone can quickly alter this. thanks for sharing.

The number of the event sits in the url and seems to be the only place in the page that references it.
ie. "xxxx.com/seminars/event-subscribe/7-workshop"

and you can see im trying to just get one value "EventMetaDescription" which i can get the publisher to fill out when they create an event.



//<code> 
 
$EventIdNumber = $_GET['cid'];
$db = JFactory::getDBO();
$db->setQuery("SELECT ‘EventMetaDescription’ FROM ‘jos_rsevents_events’ WHERE ‘IdEvent’ = $EventIdNumber limit 1");
$result = $db->loadResult();
return $result;
 
//</code>
Last Edit: 1 year ago by scott.garrett2. Reason: smiley faces in the code example!

Re:Emails sent from RSEvent with RSForm integrated 12 months ago #12744

custom RSevent registration/subscription form for RSevents.

send placeholder through to event manager / admin

//<code>
$db = JFactory::getDBO();
$query = "SELECT `EventName` FROM `#__rsevents_events` WHERE `IdEvent`= '" . JRequest::getInt('cid') . "'";
$db->setQuery($query);
$result = $db->loadResult();
return $result;
//</code>

Re:Emails sent from RSEvent with RSForm integrated 6 hours, 1 minute ago #0

Hello,
This is an automatically generated message.
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 wish to receive our 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: http://www.rsjoomla.com/support-policy.html.

Thank You!
PLEASE NOTE: This topic is NOT locked and you can add replies to it. Other users are free to reply as well. This message has been generated by a bot and has no effect on the topic whatsoever.
  • Page:
  • 1
Moderators: alex, alexp, octavian, bogdanc, andreic
Time to create page: 0.71 seconds
Feedback