close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Vetting of user registration

Thread began 2/03/2012 7:34 am by bill3786 | Last modified 9/10/2012 8:26 am by bill3786 | 4406 views | 21 replies

Jason ByrnesWebAssist

any changes to the email body need to happen in the email template file.

1) in the template, the code that displays the date is:

php:
<?php echo date("n-j-Y"$now); ?>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<?php echo date("g:i A T"$now); ?>




you can change the format that is displayed by changing the first part of the data function, for example:
n-j-Y

uses the month number without leading zeros, day of the month without leading zeros and 4 digit year.

see the php data manual for ,more details on the different formats.
function.date.php

2) the code to show the label is:

php:
<?php echo(str_replace("_"," ",$pkey)); ?>



you can get rid of the unwanted part of the label by adding another str_replace function:

php:
<?php echo(str_replace("_"," ",str_replace("Registration_group_","",$pkey))); ?>



3) To display the first name and last name in the email use the following code:

php:
welcome <?php echo((isset($_POST["Registration_group_First_Name"])?$_POST["Registration_group_First_Name"]:""); ?> <?php echo((isset($_POST["Registration_group_Last_Name"])?$_POST["Registration_group_Last_Name"]:""); ?>




4) the hidden field and registration submit are the submit button and a hidden fieild used for honey pots validation.

you can remove them from the email by editing the $removeBegins array:

php:
$removeBegins = array();

$removeBegins[] = "Security";



to:

php:
$removeBegins = array();

$removeBegins[] = "Security";
$removeBegins[] = "Hidden_Field";
$removeBegins[] = "Registration_submit";

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...