Jump to content

WM Mods

Member
  • Content Count

    7
  • Joined

  • Last visited

Community Reputation

1 Neutral

About WM Mods

  • Rank
    Junior Member

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Post the code here and someone can inspect it.
  2. I am in the final stages of creating an email template preview module. WHMCS offers no way of checking to see how an e-mail will look once you've edited it, short of making a fake account or waiting until a customer receives one, which isn't the best plan if you've screwed up a "merge field" and it looks terrible / doesn't work. It will populate the merge data with default values from the database of an existing client. It will be available soon!
  3. Seen a number of people ask for this in the request community: Many of the large ticketing systems (Zendesk, SupportPal, FreshDesk, etc.) allow the ability for an administrator/ticket operator to forward an email they receive in their personal mailbox to the ticketing system, and it will open the ticket "On Behalf" of the user who emailed them. I would like to see this ability in WHMCS for both existing and new customers who may email a staff member directly, instead of using the ticketing system. I have created a hook which allows this to work. I have tested on the most recent version of WHMCS and all seems okay. <? add_hook("TicketPiping",1,"fwd_ticket_pipe"); if(!function_exists("fwd_ticket_pipe")) { function fwd_ticket_pipe($vars) { $to = $vars['to']; $subject = $vars['subject']; if (strpos($subject, 'Fwd:') !== false) { $adminonly = false; // For admin only import $subject = str_replace("Fwd: ", "", $vars['subject']); $lines = explode("\n", $vars['body']); $message = ''; for ($i=0; $i < count($lines); $i++) { $lines[$i] = str_replace("> ","",$lines[$i]); //Split out the sender information portion if (preg_match("/From: (.*)<(.*)>/", $lines[$i], $matches)) { $name = $matches[1]; $email = $matches[2]; } else { } if($i > 8) { $message .= $lines[$i].' '; } } if($adminonly) { $adminrow = Illuminate\Database\Capsule\Manager::table("tbladmins")->where("email","=",$vars['email'])->count(); if($adminrow > 0) { logActivity('Forwarded email is sent from an admin email account. It has been imported', 0); processPipedTicket($to, $name, $email, $subject, $message, $vars['attachments']); } else { logActivity('Forwarded email is not sent from an admin email account. It has NOT been imported', 0); } } else { logActivity('Forwarded email is sent from a generic email account. It has been imported', 0); processPipedTicket($to, $name, $email, $subject, $message, $vars['attachments']); } exit(); } } }
  4. Hi Guys, I have just launched another module which again is a first for WHMCS. No Payment Method will be required if a clients cart total is 0.00. Will work for free products or coupon codes. Works with any currency! Requested over 320 times on the request board: https://requests.whmcs.com/topic/no-payment-required-on-000-orders The module can be found here: https://www.whmcsmods.co.uk/product/no_payment_required/ Thanks Liam
  5. Hi Guys, This module is now live: https://marketplace.whmcs.com/product/5393 Thanks Liam
  6. Hi Guys, I am finalising a module which will enable you to assign an unlimited amount of accounts to a primary WHMCS account. When your client logs in they are presented with a list of what account they would like to access. Each sub account assigned to the primary can have permissions set which are identical to those of contacts. So they can only access certain parts of their account, stop new orders, tickets, emails, invoices, services etc... I am looking to see if there is any other feature that i can add before i put this to general release. I scanned over https://requests.whmcs.com/topic/multiple-billing-accounts-using-one-login and took as many features as possible but incase i have missed anything please share. Thanks WHMCS Mods
  7. Hi, We can look to develop a module for this function, Can you give some more information on how you would like it to work? Would it be based on a time frame since the password was last changed? Admin initiated? Thanks WHMCS Mods https://www.whmcsmods.co.uk
  8. Welcome to WHMCS.Community WM Mods! We're glad you're here please take some time to familiarise yourself with the Community Rules & Guidelines and take a moment to introduce yourself to other WHMCS.Community members in the Introduce Yourself Board.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated