Reg: File Path Link in email body not complete Perl [closed] - perl

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 days ago.
Improve this question
I am pretty much new in Perl and wanted some guidance on how this issue can be resolved.
I have written a program to collect the information from the data and put it in the excel. When sending the email using the MIME::Lite->new.
The issue I am facing here is that when I print the complete windows path of the report location only half of the path is hyperlinked and the rest is not. The issue is due to the space in the directory path. I have tried using double slashes but it still doesn't work. I have shared the screenshot below and you can see that post the space, rest of the line is ignored.
Any guidance / advice would be great. Thank you.

Related

Perl script to read the content of an excel worksheet [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I’m totally new to Perl and I have a requirement like to create a Perl script which reads Excel worksheet contents from my project SharePoint(Internet) and same should be sent via e-mail as a HTML content.
It would be really helpful if the code snippet is shared.
We are here not to complete someone homework. If you want help, you have to show some effort first. If you are unable you can hire someone. :)
Here are some modules which you can use to read excel file:
Spreadsheet::ParseExcel
Spreadsheet::XLSX -> To read .xlsx file
Spreadsheet::Read
See the documentation for all modules.

How to track Emails sent to popular Email providers? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
There are few services that let you know whether someone opened your email or not and even how many times and when! As a reference I should link to MailTrack and Mixmax
I wonder how to detect when someone opens an email?
[Update]
As #GabrielCliseru said: most Email providers scrub JavaScript from HTML Emails so this one is off the chart
Gmail strips out any content between script tags before displaying
the message. Source
The javascript code sent inside an email is not executed. This is a security limitation.
What you want to do exactly?
You want to send a jquery code by email?
You can do it simple.
Or for more sure, you can put it in a Text file and attach it

In Ipython, I can't use %run command. " File not found" [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
As you know. I'm studying first page of ipython. ( Specific title is "Python for data analysis")
If you help me about this, I will buy you dinner when you come to my country.
Your question is not clear. But still "File not found" error generally occurs when you are not giving the correct file path or file name.
My suggestion is to put the file in the same directory of your python home and then try to run it. (Hope you have created the file).
Be more specific when you ask a question.

TWiki page to Google Sites [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I've managed to extract the HTML source of a TWiki with its URL and Perl's LWP::Simple module.
What I want to do now is to use that HTML and put into my Google Site as a new page (via a program, NOT manually).
How do i go about doing this using Perl? Any ideas would be highly appreciated.
This question probably will be closed in his current form.
You should read https://developers.google.com/google-apps/sites/docs/1.0/developers_guide_protocol#CreatingContent and ask a specific question, what doesn't works for you.
The basics:
you should auth yourself with oAuth2 protocol to google (search metacpan for oauth2)
and send a POST request to specified URL (read the 1st link).
You probably will need too, at least:
change all URL's in your pages from the TWIKI
change all IMG SRC links

Writing to a Wiki [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to write a script that writes (appends) data to an internal wiki that isn't public (needs username and password but unencrypted, http not https). The script can be a shell script, a Perl script, or even a Java application (last resort). Any help would be appreciated. Let me know if any additional information is needed.
Right now, I'm only able to read from the wiki using LWP Perl library using the getprint($url) function.
Thanks
If it's truly MediaWiki, then just use MediaWiki::API.