CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviEvent (Moderator: Yashodha Chaku) »
  • CiviEvent automatic message to confirm pending attendence
Pages: [1]

Author Topic: CiviEvent automatic message to confirm pending attendence  (Read 534 times)

Simon147

  • I post occasionally
  • **
  • Posts: 96
  • Karma: 3
  • CiviCRM version: 4.4.6
  • CMS version: Drupal 7.30
  • MySQL version: 5.0.92
  • PHP version: 5.2.9
CiviEvent automatic message to confirm pending attendence
December 22, 2011, 10:39:19 am
Hello all,

I'm trying to set up CiviCRM as an event registration system. For the particular event, manual approval of each message is required. So I would like the system to send out an automatic confirmation message once the initial registration has been done informing the person that his registration is pending for approval. 

So this would be a new System Workflow Message. The normal registration confirmation page would be sent out just later when the application is approved (with invitation for payment).

Can anyone tell me how to add this? 

    Simon

Simon147

  • I post occasionally
  • **
  • Posts: 96
  • Karma: 3
  • CiviCRM version: 4.4.6
  • CMS version: Drupal 7.30
  • MySQL version: 5.0.92
  • PHP version: 5.2.9
Re: CiviEvent automatic message to confirm pending attendence
December 22, 2011, 11:49:33 am
I realise that this is done with IF conditions in the template "Events - Registration Confirmation and Receipt (on-line)".

Within the message itself, there is already an "if" condition that puts the right text. To add a specific title like "Registration pending", you just have to add an addition condition like this

Original message subject:
Code: [Select]
{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$title}
Code with additional "if" condition:
Code: [Select]
{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{elseif $isRequireApproval}{ts}Registration pending{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$title}
Proud to have found that all by myself. Thank you Simon ;-)

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviEvent (Moderator: Yashodha Chaku) »
  • CiviEvent automatic message to confirm pending attendence

This forum was archived on 2017-11-26.