Go Back   Forum Care Forums > Development Reference Area > Webmaster Topics

Reply
 
LinkBack Thread Tools Display Modes
Email Extractor
Old
  (#1)
paris
Guest
 
Posts: n/a
Default Email Extractor - 05-14-2007, 01:52 AM

hey ...

I have a question about email.

First of all before I begin - let me just let you know - I need help
in
locating an emil program - but not for spam purposes. Spammers
make me sick! I don't even post my site in newsgroups - not
even in signature form.

I have a rather large site - it's a link directory - which contains
many links
to cool sites. I have so many links - almost 2,000!

So, from time to time - I need to email many, but not all of my posted
links
webmasters and request a link back and for other reasons. But this is
some
daunting task. Have you ever tried to email hundreds and hundreds of
sites -
one at a time. It's just too time consuming!

So, I purchased a program called mailthem pro - to aid me in this
task. It's
a great program!

I also went to a free utility site that allows you to extract just the
HREF url's
from any page. You type in your desired page - and it extracts all
the links
from that page! That's just what I need! Cause then - all I have to
do is ----
get an email utility that extracts just the emails from a list of urls
- and paste
those emails into my mailthem pro program - and I can email all of my
webmasters at once with a linkback request - instead of doing it
manually - 1
at a time. That would take ages!

Also - I often have to email the webmasters for whom I have linked to
my site
with updates - I just can not do this manually any longer!

But, the only major problem I am having right now is ---- I can not
find a
program that extracts emails from a single list of urls. I know
they're out
there - I use to use one. Now I forgot where I got it from!

Do any of you out there know of a program that extracts mails from a
single
list of urls? I have about 10 individual text files - all containing
link urls from
my site. I got this using that free utility site that allows you to
extract just
the HREF url's from any page.

Now I am in dire need of a program that can extract the emails from
those 10
individual text files!!! lol

Any help?

Thanks!!

Paris

   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Email Extractor
Old
  (#2)
Chris F.A. Johnson
Guest
 
Posts: n/a
Default Re: Email Extractor - 05-14-2007, 01:52 AM

On 2007-02-11, paris wrote:
> hey ...
>
> I have a question about email.
>
> First of all before I begin - let me just let you know - I need help
> in
> locating an emil program - but not for spam purposes. Spammers
> make me sick! I don't even post my site in newsgroups - not
> even in signature form.
>
> I have a rather large site - it's a link directory - which contains
> many links
> to cool sites. I have so many links - almost 2,000!
>
> So, from time to time - I need to email many, but not all of my posted
> links
> webmasters and request a link back and for other reasons. But this is
> some
> daunting task. Have you ever tried to email hundreds and hundreds of
> sites -
> one at a time. It's just too time consuming!
>
> So, I purchased a program called mailthem pro - to aid me in this
> task. It's
> a great program!
>
> I also went to a free utility site that allows you to extract just the
> HREF url's
> from any page. You type in your desired page - and it extracts all
> the links
> from that page! That's just what I need! Cause then - all I have to
> do is ----
> get an email utility that extracts just the emails from a list of urls
> - and paste
> those emails into my mailthem pro program - and I can email all of my
> webmasters at once with a linkback request - instead of doing it
> manually - 1
> at a time. That would take ages!
>
> Also - I often have to email the webmasters for whom I have linked to
> my site
> with updates - I just can not do this manually any longer!
>
> But, the only major problem I am having right now is ---- I can not
> find a
> program that extracts emails from a single list of urls. I know
> they're out
> there - I use to use one. Now I forgot where I got it from!
>
> Do any of you out there know of a program that extracts mails from a
> single
> list of urls? I have about 10 individual text files - all containing
> link urls from
> my site. I got this using that free utility site that allows you to
> extract just
> the HREF url's from any page.
>
> Now I am in dire need of a program that can extract the emails from
> those 10
> individual text files!!! lol
>
> Any help?


The following shell script (OTTOMH and untested) should extract
mail addresses from <a href="mailto: tags in FILENAME:

sed -e 's/</\
</g' -e 's/>/>\
/g' FILENAME | grep -i "<a *href=\"mailto:" | cut -d\" -f2


--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: Email Extractor
Old
  (#3)
Viper
Guest
 
Posts: n/a
Default Re: Email Extractor - 05-14-2007, 01:52 AM

Do you have permission to email these people asking them to link to you?


   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: Email Extractor
Old
  (#4)
nullified
Guest
 
Posts: n/a
Default Re: Email Extractor - 05-14-2007, 01:52 AM

On Sun, 11 Feb 2007 05:15:51 -0500, "Viper" <EMAIL REMOVED> wrote:

>Do you have permission to email these people asking them to link to you?
>

Do you have permission from all the aww users to speak in their name
when you spamkop?
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: Email Extractor
Old
  (#5)
Brian Wakem
Guest
 
Posts: n/a
Default Re: Email Extractor - 05-14-2007, 01:52 AM

paris wrote:

> Do any of you out there know of a program that extracts mails from a
> single
> list of urls? I have about 10 individual text files - all containing
> link urls from
> my site. I got this using that free utility site that allows you to
> extract just
> the HREF url's from any page.
>
> Now I am in dire need of a program that can extract the emails from
> those 10
> individual text files!!! lol
>
> Any help?
>
> Thanks!!



perl -e 'while(<>){push @arr,m#mailto[^"]+)#g}print "$_\n" for
@arr' /path/to/textfile


--
Brian Wakem
Email: http://homepage.ntlworld.com/b.wakem/myemail.png
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: Email Extractor
Old
  (#6)
Guest
Guest
 
Posts: n/a
Default Re: Email Extractor - 05-14-2007, 01:52 AM

On Feb 11, 10:15 am, "Viper" <ven...@gmail.com> wrote:
> Do you have permission to email these people asking them to link to you?


**** off Viper-SnakePiss your new group alt.****inglosers is waiting
for you LOL LOL

   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





Contact Us - Forum Care Forums - Archive - Top