Email Question

Doctor Gallop

Posts: 229   +12
I am running Windows 7 on my Emachine PC and use Gmail and even have a GMail notifier. [Image attached].

It all works without a hitch except at times when I will click on the "email us" link on some web sites. It then does not seem to recognize any email settings on my PC.

Does anyone have an idea of what the problem can be?

Untitled 1.jpg Untitled 2.jpg
 
Some websites fail to provide a COMMON method to do simple things, like email;

Instead, the opt for the simple coding solution, by using the tag mailto
Code:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">Send Mail</a>
this tag causes the browser to invoke your pc default email program, ASSUMING you have an email client program, say Outlook, Thunderbird or whatever. This you see the failure noted.

For completeness, the proper, common website api to email is sendmail.
 
Some websites fail to provide a COMMON method to do simple things, like email;

Instead, the opt for the simple coding solution, by using the tag mailto
Code:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">Send Mail</a>
this tag causes the browser to invoke your pc default email program, ASSUMING you have an email client program, say Outlook, Thunderbird or whatever. This you see the failure noted.

For completeness, the proper, common website api to email is sendmail.

I just downloaded Thunderbird as my email client and that solved the problem !!! Thank you !
 
Back