New plugin - MQ ReLinks

MQ ReLinks MQ ReLinks is a wordpress plugin which allows you to easy make all external links in posts, pages, comments and author links non external, by using a redirect. In stead of a direct link to another site, the plugin will create a link to a out.php file that will redirect to the requested UR
read more:

AdSense Revenue Sharing 1.2

New version 1.2 AdSense Revenue Sharing plugin released. Fixed it to work with wp 2.5 Added new option -> Position You can now choose where to place the ad when the “Show all” function is on. I.E: top, bottom, top left, top right, bottom left, bottom right You can grab it here: AdSe
read more:

Free youtube video downloader script

Here`s a free php youtube video downloader script. It can be integrated in wordpress or any other site that uses php. You can use it as by linking to yoursite/youtube.php or by including it with a iframe. To include it with a iframe you have to upload youtube.php to your blog and then go to the wp-a
read more:

MQ Punk Free WordPress Theme

MQ Punk Wordpress Theme comes with the following features: * Widget Ready * Compatible with the latest WordPress version (Ver.2.5) * 2 columns * Right sidebar * Simple banner rotator * Valid XHTML and CSS Tested on: * The following browsers: IE6, IE7, FireFox 2 Demo Download
read more:

Free Social Bookmark Script generator

Here`s a free Social Bookmark Script generator I made. It`s actually a clone of another website that I don`t want to mention. Check it out, you might like it and it could get you lots of backlinks. Host your own Social Bookmark Script generator website. Offer a free service to the world. Get free b
read more:

MQ Relinks 1.1

Categories:  Silenced general, Silenced plugins, Silenced wordpress

New in version 1.1

  1. Fixed it to work with wp 2.7.1
  2. Updated to ignore anchor links (the ones that start with #)

 

You can grab it here: MQ Relinks 1.1

My Blog Directory

Categories:  Silenced reviews

My blog directory is an unusual kind of directory.

After you submit your blog you are asked to place a link on your site/blog, but only if you want to. If you choose to do so,you get the change to become the blog of the day.

Blog of the day will be chosen on the basis of the number of unique visitors sent by the blog per day. The blog of the day will get the whole traffic of Myblogdirectory.

Sending mass emails with php

Categories:  Silenced general, Silenced scripts, Silenced tutorials

Before reading this post you must promise you will not use this info for evil things >:)
First, you must have a list of emails. Put them in a .txt file, one per line.
Second, you need a message. Put that too in a .txt file (it can contain html)
Third, create a .php file containing the following:

  1. Creating a function to send email:
    
    function mailit ($to,$subject,$message,$from){
    $headers = "MIME-Version: 1.0" . "\r\n";
    $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
    $headers .= "From: <$from>" . "\r\n";
    return (@mail(trim($to), $subject,$message, $headers)) ? TRUE : FALSE;
    }
    
  2. Creating a function to send mass email:
    
    function mass_mail($emails,$subject,$body){
    if(ini_get('SAFE_MODE')) {set_time_limit (0); } //check if safe_mode is on
        $file['email']=file($emails); //create and array with the emails
        $body=file_get_contents($body); //get the message
           foreach($file['email'] as $k => $email) {
    //check if the message was sent and return error or success message
    echo (mailit($email,$subject,$body,$email )==FALSE) ?
    "$k =&gt; $email @".date('h:i a')." <span style=\"color: red;\">Sending Failed!</span><br>" :
     "$k =&gt; $email @".date('h:i a')." <span style=\"color: green;\">Mail sent!</span><br>" ;
    //print what we have so far to the screen
    	  ob_flush();
          flush ();
    	   }
    }
    
  3. Usage:
    
    mass_mail('emails.txt','subject','content.txt');
    

    Where emails.txt is the file containing the email list and content.txt is the file containing the message.

So now you have three files. Two .txt files, one with the email list and the other with the message and a .php file that contains the functions. Now put the three files in the same folder and upload that folder to your server and test it.

continue: Next