*

vbpujara

  • ***
  • 30 posts
How can I stop this email template
« on: December 09, 2024, 09:07:04 PM »
Template named osp_email_promote is auto sending to members.

I could not find where is the controlling settings for it

Where Can I find this template source ?

How to stop this sending?

Marked as best answer by vbpujara on December 12, 2024, 10:09:11 PM
*

MB Themes

Re: How can I stop this email template
« Reply #1 on: December 10, 2024, 05:20:57 PM »
In osclass pay plugin folder, open email.php, find function and at start of function add
return false;
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

vbpujara

  • ***
  • 30 posts
Re: How can I stop this email template
« Reply #2 on: December 10, 2024, 08:30:53 PM »
Thankyou

I found the code but there is already return false in the code, where to add it properly? please highlight it.



// PUBLISH LISTING - SEND EMAIL WITH AVAILABLE PROMOTIONS
function osp_email_promote($item) {
  if(!isset($item['pk_i_id']) || $item['pk_i_id'] <= 0) {
    return false;
  }
 
  osp_include_mailer();

  $mPages = new Page() ;
  $aPage = $mPages->findByInternalName('osp_email_promote') ;
  $locale = osc_current_user_locale() ;
  $content = array();




*

MB Themes

Re: How can I stop this email template
« Reply #3 on: December 11, 2024, 02:40:26 PM »
Code: [Select]
function osp_email_promote($item) {
  return false;

  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

vbpujara

  • ***
  • 30 posts
Re: How can I stop this email template
« Reply #4 on: December 12, 2024, 10:09:03 PM »
Thankyou Admin - MB Themes

It's Done and Working.


*

MB Themes

Re: How can I stop this email template
« Reply #5 on: December 15, 2024, 06:51:28 PM »
Cool ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots