indude

Topic: How to Disable Some Email Notifications ?

Hello,

I want to disable (temporarily) some email notifications to the company like "Your ad on Site Name was published" and "Your ad on Site Name".
I tried editing page_publish.php but didn't got anything.
Please let me know how to edit the email content also.

putypuruty

Re: How to Disable Some Email Notifications ?

Hi!

To achieve what you want, open page_publish.php and comment the lines

Code:

if ($isNewPost)
   $postMan->MailPublishPendingToUser($job->mPosterEmail);

and

Code:

if ($isNewPost)
   $postMan->MailPublishToUser($jobInfo);

by adding the // chars in front of each line.

Hope it helps.

indude

Re: How to Disable Some Email Notifications ?

Thanks..
I will be thankful if you can tell me how to disable admin emails also. I tried removing my email from admin panel settings (Main Settings) but jobberbase didn't allowed me to save the settings.

Eg: [ Site Name ] New job: Job Name

putypuruty

Re: How to Disable Some Email Notifications ?

Open page_publish.php and remove the line $postMan->MailPublishToAdmin($jobInfo);

This should do the trick!