making url's clickable


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting making url's clickable
# 1  
Old 08-02-2006
making url's clickable

here at work. we operate by making all of our unix systems alerts be sent to Microsoft Outlook for us to investigate.

now, there are quite a number of url link alerts that are sent to our inboxes. problem is that we have to copy and paste each of those urls into our browser.

i hate doing this as it is quite tedious given the fact that we're probably dealing with a thousand seperate urls here.

now, is there a way to make the url link alerts that we get in outlook come up in our inboxes as a link that can be clicked as opposed to having to copy and paste it to the browser?

meaning, i want to be able to just click the problematic link as opposed to having to copy and paste it.
Terrible
# 2  
Old 08-02-2006
Tools

Hi,

I dont see what that has to do with shell-scripts or unix... Send your email as HTML and put proper <a>-tags in there, then you dont have to copy-paste the URLs...

hth
-fe
# 3  
Old 08-02-2006
Quote:
Originally Posted by bin-doph
Hi,

I dont see what that has to do with shell-scripts or unix... Send your email as HTML and put proper <a>-tags in there, then you dont have to copy-paste the URLs...

hth
-fe

well i have series of scripts that generates reports. these reports contain the urls. this definitely has A LOT to do with shell-script. A LOT. send my email in html? well, how do i do that?
Terrible
# 4  
Old 08-02-2006
Quote:
Originally Posted by Terrible
well i have series of scripts that generates reports. these reports contain the urls. this definitely has A LOT to do with shell-script. A LOT. send my email in html? well, how do i do that?
Well, but you problem is your mail-client, isnt it? I just checked the outlook client (2002) of a friend which does automatically convert url-patterns into "clickable urls" even in plain-text-mails, so you can propably find a setting for outlook there... evolution and kmail also have that ability.

To send email as html the content-type of the email to text/html and put html in it instead of plain text
# 5  
Old 08-04-2006
I think that has to be done with outlook properties and not with unix shell scripting.That you can check by typing into outlook mail some url like www.unix.com and when you press enter or space it will convert into clickable link.If not then you need to check your outlook help.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Web Development

Redirect URL containing #!

I have a Rewrite Rule that helps me redirect a page with no hindrance. I am rewriting mydomain.com/best to mydomain.com/#!/ using RewriteRule ^\/best\/? /#!/ Now I want to Rewrite mydomain.com/#!/best to (0 Replies)
Discussion started by: Junaid Subhani
0 Replies

2. Shell Programming and Scripting

Reading URL using Mechanize and dump all the contents of the URL to a file

Hello, Am very new to perl , please help me here !! I need help in reading a URL from command line using PERL:: Mechanize and needs all the contents from the URL to get into a file. below is the script which i have written so far , #!/usr/bin/perl use LWP::UserAgent; use... (2 Replies)
Discussion started by: scott_cog
2 Replies

3. UNIX for Dummies Questions & Answers

Awk: print all URL addresses between iframe tags without repeating an already printed URL

Here is what I have so far: find . -name "*php*" -or -name "*htm*" | xargs grep -i iframe | awk -F'"' '/<iframe*/{gsub(/.\*iframe>/,"\"");print $2}' Here is an example content of a PHP or HTM(HTML) file: <iframe src="http://ADDRESS_1/?click=5BBB08\" width=1 height=1... (18 Replies)
Discussion started by: striker4o
18 Replies

4. Shell Programming and Scripting

PHP Script Help - Making links to files Clickable

Ok so I wrote a php script that outputs the below to users on a webpage. # Download: /home/content/d/i/v/divine1234/eBookDownloads/ScalpRemedy_jablaa12734.zip the php code that outputs the above is: echo ("<li>Download: $download_link</li>\n"); The thing is, I dont want... (1 Reply)
Discussion started by: SkySmart
1 Replies

5. Web Development

Regex to rewrite URL to another URL based on HTTP_HOST?

I am trying to find a way to test some code, but I need to rewrite a specific URL only from a specific HTTP_HOST The call goes out to http://SUB.DOMAIN.COM/showAssignment/7bde10b45efdd7a97629ef2fe01f7303/jsmodule/Nevow.Athena The ID in the middle is always random due to the cookie. I... (5 Replies)
Discussion started by: EXT3FSCK
5 Replies

6. UNIX for Dummies Questions & Answers

ReDirecting a URL to another URL - Linux

Hello, I need to redirect an existing URL, how can i do that? There's a current web address to a GUI that I have to redirect to another webaddress. Does anyone know how to do this? This is on Unix boxes Linux. example: https://m45.testing.address.net/host.php make it so the... (3 Replies)
Discussion started by: SkySmart
3 Replies

7. Shell Programming and Scripting

url calling and parameter passing to url in script

Hi all, I need to write a unix script in which need to call a url. Then need to pass parameters to that url. please help. Regards, gander_ss (1 Reply)
Discussion started by: gander_ss
1 Replies

8. UNIX for Advanced & Expert Users

url calling and parameter passing to url in script

Hi all, I need to write a unix script in which need to call a url. Then need to pass parameters to that url. please help. Regards, gander_ss (1 Reply)
Discussion started by: gander_ss
1 Replies
Login or Register to Ask a Question