本文整理汇总了PHP中encryptValue函数的典型用法代码示例。如果您正苦于以下问题:PHP encryptValue函数的具体用法?PHP encryptValue怎么用?PHP encryptValue使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了encryptValue函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: process_form_data
function process_form_data($urldata, $formdata, $action)
{
$query = '';
# Determine what to do with the form data based on the action
if ($action == 'delete') {
$query = $this->Query_reader->get_query_by_code('deactivate_employee_record', array('id' => $urldata['id']));
} else {
if ($action == 'save') {
# Before saving this data, add slashes so that bad additions and quotes are 'neutralised'
$formdata = clean_form_data($formdata);
# User is editing
if (isset($formdata['editid']) && trim($formdata['editid']) != '') {
$query = $this->Query_reader->get_query_by_code('update_employee_record', $formdata);
} else {
$previous_user_array = $this->Query_reader->get_row_as_array('pick_employee_by_email', array('emailaddress' => $formdata['emailaddress']));
# User data doesnt exist
if (count($previous_user_array) == 0) {
$result = $this->db->query($this->Query_reader->get_query_by_code('insert_employee_record', $formdata));
#Send the new user an email if their record was created successfully
if ($result) {
#Send user email so that they can confirm their email
$_POST['messageid'] = "AC" . strtotime('now');
$_POST['confirmationid'] = encryptValue("AC" . $this->db->insert_id());
$_POST['username'] = generate_user_details($this->db->insert_id(), 'username');
$_POST['password'] = generate_user_details($this->db->insert_id(), 'password');
$_POST['adminname'] = htmlentities($this->session->userdata('names'));
$result = $this->db->query($this->Query_reader->get_query_by_code('update_user_credentials', array_merge(array('userid' => $this->db->insert_id()), $_POST)));
echo "THIS QUERY: " . $this->Query_reader->get_query_by_code('update_user_credentials', array_merge(array('userid' => $this->db->insert_id()), $_POST));
$response = $this->emailhandler->send_email(array('admin' => 'FROM**ACRAV Website Administration**' . SITE_ADMIN_MAILID, 'user' => 'TO**' . $this->session->userdata('emailaddress') . ', ' . $_POST['emailaddress'] . ', ' . SITE_ADMIN_MAILID, 'user' => 'CC**' . $this->session->userdata('emailaddress')), $_POST, 'newcompanyuser');
}
}
}
}
}
if (!isset($result)) {
$result = $this->db->query($query);
}
return $result;
}
示例2: load_form
function load_form()
{
access_control($this);
# Get the passed details into the url data array if any
$urldata = $this->uri->uri_to_assoc(3, array('m', 'i', 'a'));
# Pick all assigned data
$data = assign_to_data($urldata);
$this->session->set_userdata('local_allowed_extensions', array('.doc', '.docx', '.xls', '.xlsx', '.pdf'));
#Eliminate editing messages
if (!empty($data['i']) && empty($data['a'])) {
$data['a'] = encryptValue('view');
}
#$data['r'] is for replying AND $data['i'] is for view only mode
if (!empty($data['i']) && !empty($data['a']) && decryptValue($data['a']) == 'view' || !empty($data['r'])) {
$readid = !empty($data['r']) ? decryptValue($data['r']) : decryptValue($data['i']);
$data['formdata'] = $this->Query_reader->get_row_as_array('get_message_read_by_id', array('id' => $readid));
#Mark message as read by this user and proceed to show if the message details are found
if (!empty($data['formdata'])) {
#User is just viewing the message
if (empty($data['r'])) {
$data['isview'] = 'Y';
$result = $this->db->query($this->Query_reader->get_query_by_code('update_message_read_status', array('readip' => get_ip_address(), 'isread' => 'Y', 'id' => $readid)));
} else {
$data['formdata']['subject'] = substr($data['formdata']['subject'], 0, 3) != "RE:" ? "RE: " . $data['formdata']['subject'] : $data['formdata']['subject'];
$data['formdata']['details'] = "\n\n\n\n\nOn " . date('m/d/Y h:iA', strtotime($data['formdata']['messagedate'])) . " " . $data['formdata']['sentbydetails'] . " wrote\n------------------------------------------\n" . reduce_string_by_chars($data['formdata']['details'], 500);
$this->session->set_userdata('exclusers', array($data['formdata']['sentby']));
}
$recipients = $this->db->query($this->Query_reader->get_query_by_code('get_recipients_list', array('msgid' => $data['formdata']['messageid'])));
$data['recipients'] = $recipients->result_array();
} else {
$this->session->set_userdata('smsg', "WARNING: The message could not be loaded.");
redirect(base_url() . "messages/load_inbox/m/smsg");
}
}
$this->load->view('messages/send_message_view', $data);
}
示例3: add_user_to_group
function add_user_to_group()
{
access_control($this);
# Get the passed details into the url data array if any
$urldata = $this->uri->uri_to_assoc(3, array('m', 'i'));
# Pick all assigned data
$data = assign_to_data($urldata);
if (!empty($data['a']) && decryptValue($data['a']) == 'adduser') {
$result = $this->db->query($this->Query_reader->get_query_by_code('add_user_to_group', array('groupname' => decryptValue($data['gn']), 'userid' => $data['adduserid'], 'isactive' => 'Y')));
$data['msg'] = $result ? "The user has been added to the email group." : "ERROR: The user could not be added to the email group.";
$userlist = $this->session->userdata('usergrouplist');
array_push($userlist, $data['adduserid']);
$this->session->set_userdata('usergrouplist', $userlist);
$group = $this->db->query($this->Query_reader->get_query_by_code('get_group_by_name', array('groupname' => decryptValue($data['gn']))));
$data['page_list'] = $group->result_array();
$data['area'] = "user_email_group_list";
$this->load->view('incl/addons', $data);
} else {
$data['gn'] = !empty($data['groupname']) ? encryptValue(restore_bad_chars($data['groupname'])) : $data['gn'];
$data['area'] = "add_user_to_group";
$this->load->view('incl/addons', $data);
}
}
示例4: encryptValue
echo encryptValue("company");
?>
&flag=<?php
echo encryptValue("dras");
?>
&truck_id=<?php
echo $truck['truck_id'];
?>
&assid=<?php
echo $row132['ID'];
?>
">Assign</a>] [<a href="dashboard.php?p=<?php
echo encryptValue("company");
?>
&flag=<?php
echo encryptValue("drhist");
?>
&truck_id=<?php
echo $truck['truck_id'];
?>
">View History</a>]</td>
<td align="left"><div <?php
if (isset($truck['truck_id'])) {
echo "class=\"editable_select\"";
}
?>
id="trucks|truck_id|systemstatus|<?php
echo $truck['truck_id'];
?>
"><?php
if (isset($truck['truck_id'])) {
示例5: mysql_fetch_assoc
do {
$comp = mysql_fetch_assoc(mysql_query("SELECT * FROM companies Where ID = '" . $row['CompanyID'] . "'"));
?>
<tr class="<?php
echo $row['ID'];
?>
" style="vertical-align:middle;">
<td style="padding-left:8px;"><a href="dashboard.php?p=c2RpYg==&flag=<?php
echo encryptValue("vukampane");
?>
&token=<?php
echo encryptValue($row['CompanyID']);
?>
&boj=<?php
echo encryptValue($comp['Name']);
?>
" title="View Company details?"><?php
echo $comp['Name'];
?>
</a></td>
<td align="center"><?php
echo number_format($row['BidAmount']);
?>
</td>
<td align="left"><a title="<b><u>FULL BID DETAILS</u></b><br/><?php
echo $row['Details'];
?>
" href="#"><?php
echo substr(nl2br(strip_tags($row['Details'])), 0, 30) . '.....';
?>
示例6: get_row_color
#total debit
if ($row['cr_dr'] == 'CR') {
$total_credit += $row['amount'];
}
#total credit
if ($row['cr_dr'] == 'DR') {
$total_debit += $row['amount'];
}
$balance = $total_credit - $total_debit;
#Show one row at a time
echo "<tr class='listrow' style='" . get_row_color($counter, 2) . "'>\r\r\n <td class='leftListCell rightListCell' valign='top' nowrap>";
#if(check_user_access($this,'delete_deal')){
echo "<a href='javascript:void(0)' onclick=\"confirmDeleteEntity('" . base_url() . "finances/delete_transaction/i/" . encryptValue($row['transid']) . "', 'Are you sure you want to remove this fee? \\nThis operation can not be undone. \\nClick OK to confirm, \\nCancel to cancel this operation and stay on this page.');\" title=\"Click to remove this fee.\"><img src='" . base_url() . "images/delete.png' border='0'/></a>";
#}
#if(check_user_access($this,'update_deals')){
echo " <a href='" . base_url() . "finances/load_transaction_form/i/" . encryptValue($row['transid']) . "' title=\"Click to edit this fee details.\"><img src='" . base_url() . "images/edit.png' border='0'/></a>";
#}
echo "</td>\t\t\r\r\n <td valign='top'>" . date("j M, Y", GetTimeStamp($row['dateadded'])) . "</td>\t\t\r\r\n <td valign='top'>" . $account_info['title'] . "</td>\r\r\n <td valign='top'>" . $row['particulars'] . "</td>\t\t\t\t\r\r\n <td valign='top' class='number_format' align='right' nowrap>" . ($row['cr_dr'] == 'DR' ? number_format($row['amount'], 0, '.', ',') : '') . "</td>\t\t\r\r\n <td valign='top' class='number_format' align='right' nowrap>" . ($row['cr_dr'] == 'CR' ? number_format($row['amount'], 0, '.', ',') : '') . "</td>\r\r\n <td class='rightListCell number_format' valign='top' align='right' nowrap>" . number_format($balance, 0, '.', ',') . "</td>\t\t\r\r\n </tr>";
$counter++;
}
echo "<tr>\r\r\n<td colspan='5' align='right' class='layer_table_pagination'>" . pagination($this->session->userdata('search_total_results'), $rows_per_page, $current_list_page, base_url() . "finances/manage_petty_cash_book/p/%d") . "</td>\r\r\n</tr>\r\r\n</table>";
} else {
echo "<div>No transactions have been added.</div>";
}
?>
</td>
</tr>
示例7: fetch_terms_ajax
function fetch_terms_ajax()
{
$school_id = $this->schoolinfo['id'];
#GET SEGMENT
$yearid = $this->uri->segment(3);
#LOAD MODEL
$this->load->model('marks_view');
$year_array = $this->marks_view->fetchaterms($yearid, $school_id);
$ary = "";
foreach ($year_array as $term) {
$ary .= $term['term'] . "@@" . encryptValue($term['id']) . "##";
}
echo $ary;
}
示例8: encryptValue
<h1>MANAGE MY FLEET</h1>
My Fleet Manager</span>
<input name="cancel4" type="button" id="cancel4" value="Add Vehicle" onClick="location.href='dashboard.php?p=<?php
echo encryptValue("company");
?>
&flag=<?php
echo encryptValue("compTruckz");
?>
'" class="button"/>
<input name="cancel5" type="button" id="cancel5" value="View My Fleet" onClick="location.href='dashboard.php?p=<?php
echo encryptValue("company");
?>
&flag=<?php
echo encryptValue("vuTruckz");
?>
'" class="button"/>
<?php
session_start();
$id = $_GET['truck_id'];
$_SESSION['truck'] = $_GET['truck_id'];
$truck_id = $_SESSION['truck'];
$session_truck = $_SESSION['truck'];
$query3 = "SELECT * FROM trucks where truck_id='{$id}'";
$query2 = mysql_query($query3, $connect) or die(mysql_error());
$companytruckdetails = mysql_fetch_assoc($query2);
$companytruckdetail = mysql_num_rows($query2);
if (isset($companytruckdetails['truck_id'])) {
$edit = "";
示例9: base_url
src="<?= base_url() ?>uploads/blogs/<?= get_thumbnail($row['cover_image']) ?>">
</a>
<?php
} else {
?>
<img class="img-rounded" width="32px" height="32px"
src="<?= base_url() ?>uploads/noimage.png">
<?php
}
?>
<a style="padding-left: 10px;" class=""
href="<?= base_url() . $this->uri->segment(1) . '/' . $this->uri->segment(2) . '/change_cover/' . encryptValue($row['id']) ?>">change</a>
</td>
</tr>
<?php
}
?>
<?=$pages?>
</tbody>
</table>
</div>
</div><!--end .card-body -->
示例10: encryptValue
echo encryptValue($row['groupid']);
?>
" title="Click to update this access group."><img src="<?php
echo base_url();
?>
images/edit.png" border="0"/></a>
<?php
}
if (check_user_access($this, 'manage_access_permissions')) {
?>
<a href="<?php
echo base_url();
?>
admin/update_permissions/i/<?php
echo encryptValue($row['groupid']);
?>
" title="Click to update this access group's permissions"><img src="<?php
echo base_url();
?>
images/patient_history.png" border="0" height="18"/></a>
<?php
}
?>
</td>
<?php
}
?>
示例11: base_url
if (!empty($page_list)) {
echo "<table width='100%' border='0' cellspacing='0' cellpadding='5'>\r\r\n \t<tr>\r\r\n\t\t\t<td class='listheader' width='1%'> </td>\r\r\n \t<td class='listheader' nowrap>User <a class='fancybox fancybox.ajax' href='" . base_url() . "user/load_staff_form')' title='Click to add a user'><img src='" . base_url() . "images/add_item.png' border='0'/></a></td>\r\r\n\t\t\t<td class='listheader' nowrap>Username</td>\r\r\n\t\t\t<td class='listheader' nowrap>Staff Group</td>\r\r\n \t<td class='listheader' nowrap>Phone</td>\r\r\n\t\t\t<td class='listheader' nowrap>Email</td>\r\r\n\t\t\t<td class='listheader' nowrap>Date Added</td>\r\r\n\t\t\t</tr>";
$counter = 0;
foreach ($page_list as $row) {
#User group details
$usergroup = get_user_group_details($this, $row['usergroup']);
if (empty($usergroup)) {
$usergroup['groupname'] = '';
}
#Show one row at a time
echo "<tr id='tr_" . $row['id'] . "' class='listrow' style='" . get_row_color($counter, 2) . "'>\r\r\n\t\t<td class='leftListCell rightListCell' valign='top' nowrap>";
#if(check_user_access($this,'delete_deal')){
echo "<a href='javascript:void(0)' onclick=\"asynchDelete('" . base_url() . "user/delete_staff/i/" . encryptValue($row['id']) . "', 'Are you sure you want to remove this user? \\nThis operation can not be undone. \\nClick OK to confirm, \\nCancel to cancel this operation and stay on this page.', 'tr_" . $row['id'] . "');\" title=\"Click to remove this user.\"><img src='" . base_url() . "images/delete.png' border='0'/></a>";
#}
#if(check_user_access($this,'update_deals')){
echo " <a class='fancybox fancybox.ajax' href='" . base_url() . "user/load_staff_form/i/" . encryptValue($row['id']) . "' title=\"Click to edit this user details.\"><img src='" . base_url() . "images/edit.png' border='0'/></a>";
#}
echo "</td>\r\r\n\t\t\r\r\n\t\t<td valign='top'>" . ucwords(strtolower($row['firstname'] . " " . $row['lastname'])) . "</td>\t\t\r\r\n\t\t<td valign='top'>" . $row['username'] . "</td>\r\r\n\t\t<td valign='top'>" . check_empty_value($usergroup['groupname'], 'N/A') . "</td>\t\t\r\r\n\t\t<td valign='top' nowrap>" . $row['telephone'] . "</td>\t\t\r\r\n\t\t<td valign='top'>" . $row['emailaddress'] . "</td>\r\r\n\t\t<td valign='top' class='rightListCell'>" . date("j M, Y", GetTimeStamp($row['dateadded'])) . "</td>\t\t\r\r\n\t\t</tr>";
$counter++;
}
echo "<tr>\r\r\n\t<td colspan='5' align='right' class='layer_table_pagination'>" . pagination($this->session->userdata('search_total_results'), $rows_per_page, $current_list_page, base_url() . "user/manage_staff/p/%d", 'results') . "</td>\r\r\n\t</tr>\r\r\n\t</table>";
} else {
echo "<div>No users have been registered.</div";
}
?>
</div>
</td>
</tr>
示例12: base_url
<td>
<?php
if($row['imageurl']){
?>
<a href="<?= base_url() . 'uploads/footer_link_logos/' . $row['imageurl'] ?>"
class="fancybox" title="<?= $row['title'] ?>">
<img class="img-circle" width="32px" height="32px"
src="<?= base_url() ?>uploads/footer_link_logos/<?= get_thumbnail($row['imageurl']) ?>">
</a>
<?php
}
?>
<a href="<?=base_url().$this->uri->segment(1).'/'.$this->uri->segment(2).'/footer_link_logo/'.encryptValue($row['id'])?>"><?=$row['imageurl']!==''?'update':'upload'?> Logo</a> </td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
示例13: mysql_real_escape_string
$CARGOHEIGHT = mysql_real_escape_string(trim($_POST["cargoheight"]));
} else {
$CARGOHEIGHT = "0";
}
//Insert the new cargo
$sqlu = "INSERT INTO containers (JobID, containernumber,company_id,cargotype,description,instructions,originaddress,destinationaddress,origincountry,destinationcountry,cargoweight,cargolength,cargowidth,cargoheight) VALUES ('" . $_POST['jobid'] . "', '{$CONTAINERNUMBER}','" . $_SESSION['UserID'] . "','{$CARGOTYPE}','{$DESCRIPTION}','{$INSTRUCTIONS}','{$ORIGINADDRESS}','{$DESTINATIONADDRESS}','{$ORIGINCOUNTRY}','{$DESTINATIONCOUNTRY}','{$CARGOWEIGHT}','{$CARGOLENGTH}','{$CARGOWIDTH}','{$CARGOHEIGHT}')";
$queryu = mysql_query($sqlu);
if ($queryu) {
session_start();
$_SESSION['success'] = "sucess";
header("Location: dashboard.php?p=" . encryptValue("company") . "&flag=" . encryptValue("compKurgo") . "");
} else {
session_start();
$_SESSION['success'] = "sucess2";
$_SESSION['mesog'] = "Sorry!, an internal system error happened, try again! " . mysql_error();
header("Location: dashboard.php?p=" . encryptValue("company") . "&flag=" . encryptValue("compKurgo") . "");
}
exit;
}
//End of add cargo
//Check and add bid
if (isset($_REQUEST["b1d4w4k"]) && $_REQUEST["b1d4w4k"] == "true") {
$amount = mysql_real_escape_string($_POST["amount"]);
$details = mysql_real_escape_string($_POST["details"]);
$bidowner = mysql_real_escape_string($_POST["bidowner"]);
$bidid = mysql_real_escape_string($_POST["bidid"]);
$job = mysql_real_escape_string($_POST["job"]);
//Check the variables
$c = true;
$c = $c && strlen($amount) >= 4 ? true : false;
if ($c == false) {
示例14: foreach
<div id="searchresults">
<?php
#Show search results
if (!empty($page_list)) {
echo "<table width='100%' border='0' cellspacing='0' cellpadding='5'>\r\r\n \t<tr>\r\r\n\t\t\t<td class='listheader'> </td>\r\r\n\t\t\t<td class='listheader' nowrap>Date Added</td>\r\r\n \t<td class='listheader' nowrap>Subject</td>\r\r\n\t\t\t<td class='listheader' nowrap>Student</td>\r\r\n\t\t\t</tr>";
$counter = 0;
foreach ($page_list as $row) {
#Show one row at a time
echo "<tr style='" . get_row_color($counter, 2) . "'>\r\r\n\t\t<td valign='top' nowrap>";
if (1) {
echo "<a href='javascript:void(0)' onclick=\"confirmDeleteEntity('" . base_url() . "student/delete_miscelleneous/i/" . encryptValue($row['miscid']) . "', 'Are you sure you want to remove this item? \\nThis operation can not be undone. \\nClick OK to confirm, \\nCancel to cancel this operation and stay on this page.');\" title=\"Click to remove this item.\"><img src='" . base_url() . "images/delete.png' border='0'/></a>";
}
if (1) {
echo " <a href='" . base_url() . "students/load_miscelleneous_form/i/" . encryptValue($row['miscid']) . "/s/" . encryptValue($row['studentid']) . "' title=\"Click to edit this item.\"><img src='" . base_url() . "images/edit.png' border='0'/></a>";
}
echo "</td>\r\r\n\t\t\r\r\n\t\t<td valign='top'>" . date("j M, Y", GetTimeStamp($row['dateadded'])) . "</td>\r\r\n\t\t\r\r\n\t\t<td valign='top'><a href='" . base_url() . "students/load_miscelleneous_form/i/" . encryptValue($row['miscid']) . "/a/" . encryptValue("view") . "/s/" . encryptValue($row['studentid']) . "/u/" . encryptValue("update") . "' title=\"Click to edit this item.\">" . $row['subject'] . "</a></td>\r\r\n\t\t\r\r\n\t\t<td valign='top'>" . $row['firstname'] . " " . $row['lastname'] . "</td>\r\r\n\t\t\r\r\n\t\t</tr>";
$counter++;
}
echo "<tr>\r\r\n\t<td colspan='5' align='right' class='layer_table_pagination'>" . pagination($this->session->userdata('search_total_results'), $rows_per_page, $current_list_page, base_url() . "students/manage_miscelleneous/p/%d") . "</td>\r\r\n\t</tr>\r\r\n\t</table>";
} else {
echo format_notice("There is no at the moment.");
}
?>
</div>
</td>
</tr>
</table></td>
</tr>
</table>
示例15: get_confirmation_messages
function get_confirmation_messages($obj, $formdata, $emailtype)
{
$emailto = '';
$emailcc = '';
$emailbcc = '';
$email_HTML = '';
$subject = '';
$fileurl = '';
$formdata['messageid'] = generate_msg_id();
$site_url = substr(base_url(), 0, -1);
switch ($emailtype) {
case 'registration_confirm':
$emailto = $formdata['emailaddress'];
$emailbcc = SITE_ADMIN_MAIL;
$subject = "Account details for " . $formdata['firstname'] . " " . $formdata['lastname'] . " at " . SITE_TITLE;
$email_HTML = "Hello " . $formdata['firstname'] . ",\n\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\tA profile has been created for you on the " . SITE_TITLE . ".\n\t\t\t\t\t\t\t<br>\n\t\t\t\t\t\t\tLogin using the following details:\n\t\t\t\t\t\t\t<br>Email address: " . $formdata['emailaddress'] . "\n\t\t\t\t\t\t\t<br>Password: " . $formdata['password'] . "\n\t\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\t\tFor your security, you are advised to change your password the first time you login.";
$email_HTML .= "<br><br>\n\t\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\t\tYour team at " . SITE_SLOGAN . "<br>" . $site_url;
break;
case 'password_change_notice':
$emailto = $formdata['emailaddress'];
$subject = "Your password has been changed at " . SITE_TITLE;
$call = !empty($formdata['firstname']) ? $formdata['firstname'] : $formdata['emailaddress'];
$email_HTML = $call . ",\n\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\tYour password has been changed at " . SITE_TITLE . "<br><br>If you did not change your password or authorize its change, please contact us immediately at " . SECURITY_EMAIL;
$email_HTML .= "<br><br>\n\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\tYour team at " . SITE_TITLE . "<br>\n\t\t\t\t\t\t" . $site_url;
break;
case 'send_sys_msg_by_email':
$emailto = NOREPLY_EMAIL;
$emailbcc = $formdata['emailaddress'];
$subject = $formdata['subject'];
$email_HTML = "The following message has been sent to you from " . SITE_TITLE . ":<br><hr>" . nl2br($formdata['details']) . "<hr><br>To respond to the above message, please login at:<br>" . base_url() . "admin/login" . "<br><br>and click on the messages icon to respond.";
$email_HTML .= "<br><br>\n\t\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\t\tYour team at " . SITE_TITLE . "<br>\n\t\t\t\t\t\t\t" . $site_url;
break;
case 'changed_password_notify':
$emailto = $formdata['emailaddress'];
$subject = "Your new password for " . SITE_TITLE;
$call = !empty($formdata['firstname']) ? $formdata['firstname'] : $formdata['emailaddress'];
$email_HTML = $call . ",\n\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\tYour new password for " . SITE_TITLE . " is: " . $formdata['newpass'] . "<br><br>If you did not request the new password, please contact us immediately at " . SECURITY_EMAIL;
$email_HTML .= "<br><br>\n\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\tYour team at " . SITE_TITLE . "<br>\n\t\t\t\t\t\t" . $site_url;
break;
case 'website_feedback':
$emailto = $formdata['emailaddress'];
$emailbcc = SITE_ADMIN_MAIL;
$subject = "Your message to " . SITE_TITLE . " has been received.";
$email_HTML = "Hello,\n\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\tYour message to " . SITE_TITLE . " has been received. If necessary, you will be notified when our staff answers your message.<br>The details of your message are included below:\n\t\t\t\t\t\t<br><br>";
$email_HTML .= "<table>\n\t\t\t\t\t\t<tr><td nowrap><b>Your email address:</b></td><td>" . $formdata['emailaddress'] . "</td></tr>\n\t\t\t\t\t\t<tr><td nowrap><b>What do you need help with?</b></td><td>" . $formdata['helptopic'] . "</td></tr>\n\t\t\t\t\t\t<tr><td nowrap><b>Subject:</b></td><td>" . $formdata['subject'] . "</td></tr>\n\t\t\t\t\t\t<tr><td nowrap><b>Description:</b></td><td>" . $formdata['description'] . "</td></tr>";
if (!empty($formdata['attachmenturl'])) {
$email_HTML .= "<tr><td><b>Attachment:</b></td><td><a href='" . base_url() . "documents/force_download/f/" . encryptValue('attachments') . "/u/" . encryptValue($formdata['attachmenturl']) . "'>" . $formdata['attachmenturl'] . "</a></td></tr>";
}
$email_HTML .= "</table>";
$email_HTML .= "<br><br>\n\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\tYour team at " . SITE_TITLE . "<br>\n\t\t\t\t\t\t" . $site_url;
break;
case 'account_reactivated_notice':
$emailto = $formdata['emailaddress'];
$emailbcc = SITE_ADMIN_MAIL;
$subject = "Your account has been reactivated at " . SITE_TITLE;
$email_HTML = $formdata['firstname'] . ",\n\t\t\t\t\t\t<br><br>\n\t\t\t\t\t\tYour account with username <b>" . $formdata['username'] . "</b> has been reactivated at " . SITE_TITLE . ".\n\t\t\t\t\t\t<BR><BR>\n\t\t\t\t\t\tIf you did not authorize this action, please notify us immediately at " . SECURITY_EMAIL . ".";
$email_HTML .= "<br><br>\n\t\t\t\t\t\tRegards,<br><br>\n\t\t\t\t\t\tYour team at " . SITE_TITLE . "<br>\n\t\t\t\t\t\t" . $site_url;
break;
default:
$emailto = $formdata['emailaddress'];
if (!empty($formdata['subject'])) {
$subject = $formdata['subject'];
} else {
$subject = SITE_TITLE . " Message";
}
$email_HTML = $formdata['message'];
break;
}
$email_HTML .= "<br><br>MESSAGE ID: " . $formdata['messageid'];
return array('emailto' => $emailto, 'emailcc' => $emailcc, 'emailbcc' => $emailbcc, 'subject' => $subject, 'message' => $email_HTML, 'fileurl' => $fileurl);
}