Entries Tagged as 'mail'

Add an HTML signature to my Thunderbird mail account in Linux/Ubuntu

Thunderbird does support HTML - and plain text - signatures, but the way you configure and install it is a bit more tricky than with mainstream mail programs:

You need to create a signature file. A signature file may be formatted or unformatted. Mozilla states (incorrectly) that formatted signature files will only be visible to those who can view HTML files and recommend the use of an unformatted signature if possible. My experience is that if they can’t see HTML, they’ll still see your signature file, it’ll just be formatted incorrectly.

For an unformatted signature file, create a new file in Notepad or your favorite text-only editing program. For example, you could create the file in MS Word and then select File / Save As and select type Text Only.

For a formatted signature file, create a new file in MS Word. Then select File / Save as Web Page. This will create a *.htm file. Or, if you have some experience with HTML, you can create this signature file directly. Just remember that any graphics you include will have to be hosted somewhere on the Internet, and that they’ll force your recipients to access the ‘net every time they read your email.

Once you have a file containing the signature you want, you’ll need to activate the signature file, and this is the step that’s a bit tricky:

  1. Click on Tools –> Account Settings
  2. Click on the email account in the top left corner of the screen that is your active account.
  3. Check the box on the right side of the screen labeled Attach this signature then select the new signature file you’ve just created.
  4. Click OK.

That should do it, and you should be ready to go with your new Thunderbird signature on your email messages!


Mail Yourself When Google Crawls Your Site php SEo notification

Many web hosting companies are now offering pay per click as well as other marketing methods along with domain names without having the necessary education.

PHP: Mail Yourself When Google Crawls Your Site

Search engines like Google crawls sites from database.Means they have a list of websites in their database for checking and a script suns every specified time to check the listed web sites.You may need sometimes to notify about this event.

Have you ever wanted to know when Google crawls your website? Well now you can using a simple PHP script which emails you every time GoogleBot crawls your site.

I thought that many of you might find this bit of code useful, that is why I have decided to post it up.

It is not a very long piece of code, but I will talk you through how it functions.

First off lets take a look at the code:

  1. <?php
  2. if ( strpos( $_SERVER['HTTP_USER_AGENT'], ‘Googlebot’ ) !== false )
  3. {
  4. // Your email address
  5. $email_address = ‘you@yourdomain.com’;
  6. // Send yourself an email
  7. mail($email_address,’Googlebot Visit Alert’, ‘The Googlebot has visited your page: ‘.$_SERVER['REQUEST_URI'].” at time:”.time());
  8. }
  9. ?>

As you can see it is a simple piece of code.

First of all it checks the user agent to see if it is ‘Googlebot’. If the user agent is ‘Googlebot’ then it will send an email to the email address you supply.