in reply to Re: Cannot get Net::SMTP to print file path with spaces properly
in thread Cannot get Net::SMTP to print file path with spaces properly

Thanks for the info but that didn't work. It showed up in the e-mail as:

<a href="file:///server/weekly status/report.txt">\\server\weekly status\report.txt</a>
  • Comment on Re^2: Cannot get Net::SMTP to print file path with spaces properly
  • Download Code

Replies are listed 'Best First'.
Re^3: Cannot get Net::SMTP to print file path with spaces properly
by davidrw (Prior) on Jul 13, 2005 at 14:49 UTC
    what is the target email client? is support for html avilable/turned on?
      I'm using Outlook 2002, sending the mail via the SMTP server. On the client that I'm running the script on I have HTML turned on. Maybe the problem is with the SMTP server?
        I figured it out (finally found it in Outlook help). I needed to put angle brackets around the path.

        $smtp->datasend("<\\\\server\\weekly reports\\report.txt>");