• 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: Emails sent from RSEvent with RSForm integrated

Emails sent from RSEvent with RSForm integrated 14 years 8 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.
The administrator has disabled public write access.

Re:Emails sent from RSEvent with RSForm integrated 14 years 8 months ago #11275

  • bogdanc
  • bogdanc's Avatar
  • OFFLINE
  • Moderator
  • Posts: 669
  • Thank you received: 11
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.
The administrator has disabled public write access.

Re:Emails sent from RSEvent with RSForm integrated 14 years 3 months 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>
The administrator has disabled public write access.

Re:Emails sent from RSEvent with RSForm integrated 14 years 2 months 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: 14 years 2 months ago by scott.garrett2. Reason: smiley faces in the code example!
The administrator has disabled public write access.

Re:Emails sent from RSEvent with RSForm integrated 14 years 2 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>
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!