On 18 Jul 2022 at 18:25, Philip Jackson wrote:

Date sent:              Mon, 18 Jul 2022 18:25:45 +0200
Subject:                Re: [libreoffice-users] Question on send to 
email option in linux..
To:                     users@global.libreoffice.org
From:                   Philip Jackson <philip-jack...@gmx.com>

> Could there be a problem with your installation of LO?
> 
> I'm using LO Writer 6.4.7.2 on UbuntuStudio 20.04 and the Send to email
> works fine. Clicking the File > 'Send to email' opens a write window in my
> Thunderbird mail client with the document already attached. 
>

Thanks for the reply. I have LibreOffice 7.2.7.2 version as 
loaded by default for my Fedora 35 and also have 
LibreOffice 7.3.4.2 downloaded from libreoffice.

With both I have tried a simple saved file with the word 
test in it. File is saved. Have Tools / Options / Internet / 
Email set to /usr/bin/WSENDTO (Thou I did also try using 
the direct path to program as well.).

/usr/bin/WSENDTO has this.
#!/bin/bash
echo $0 $1 $2 $3
/home/msetzerii/.wine/drive_c/PMAIL/Programs/WSENDT
O.EXE $1

Strange thing is that absolutely nothing happens. No box 
opens, and nothing in way of a error message is showing 
up.. But with my simple macro - running it opens the 
email client and has the document attached with no 
problem...

Simple Macro
Sub Mailto
Dim oDoc As Object
Dim Path$
oDoc = ThisComponent
Path$ = oDoc.getURL()
If oDoc.HasLocation() Then 
shell("/home/msetzerii/.wine/drive_c/PMAIL/Programs/W
SENDTO.EXE " &mid(Path$,8,100) )
Else
  Print "The document has not yet been stored"
End If
End Sub
 
Tools / Marco / Run and selecting it opens the email client 
with the file attached..

Not getting anything is what confuses me. Would expect 
something to show on screen, but nothing. The macro 
calls same program and takes the passed parameter, and 
does trim the FILE:// off the parameter. 


> Philip
> 
> On 18/07/2022 12:14, Michael D. Setzer II wrote:
> > Was trying to get the option to work, but after setting the
> > program for Internet email nothing  happened when I
> > tried to send to email. No message No Error.
> >
> > Created a macro that does seem to work, but is very
> > basic. Just copied stuff I found on web, so some parts
> > might be better. First writer macro I've done. Usually do
> > macros in calc.
> > Found code getURL that gets path to file that must be
> > saved already. Probable a command to get it without the
> > file://  but found another thing to remove that.
> > Then it is just a matter of calling the WSENDTO.EXE
> > program and adding the full path to the already save file.
> > That brings up the Pegasus Email client, and adds the
> > document as an attachment.
> >
> > Sub Mailto
> > Dim oDoc As Object
> > Dim Path$
> > oDoc = ThisComponent
> > Path$ = oDoc.getURL()
> > If oDoc.HasLocation() Then
> >    Print "The Document URL is " & oDoc.getURL()
> >    uWithoutProto = Split(oDoc.getURL(),"file://")(1)
> > shell("/home/msetzerii/.wine/drive_c/PMAIL/Programs/W
> > SENDTO.EXE " & uWithoutProto)
> > Else
> >    Print "The document has not yet been stored"
> > End If
> > End Sub
> >
> > Has print statements from original code, that could be
> > removed. The WSENDTO.EXE is the mapi client that
> > works in windows and works from firefox.  Surprized that
> > nothing shows with libreoffice.
> >
> > Thanks.
> >
> > +------------------------------------------------------------+
> >   Michael D. Setzer II - Computer Science Instructor
> > (Retired)
> >   mailto:mi...@guam.net
> >   mailto:msetze...@gmail.com
> >   Guam - Where America's Day Begins
> >   G4L Disk Imaging Project maintainer
> >   http://sourceforge.net/projects/g4l/
> > +------------------------------------------------------------+
> >
> >
> >
> >
> 
> --
> ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> <https://le-theron.com>   author of "The Circle of Fifths" for improvising 
> musicians
>    Get it here https://www.books2read.com/u/bWnRM4
> 
>    auteur : "Le Cycle des Quintes" pour musiciens improvisateurs
>    disponibilité : https://www.books2read.com/u/bw8rv9
> ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> 
> -- 
> To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
> Problems? 
> https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
> Posting guidelines + more: https://wiki.documentfoundation.org/Netiquette
> List archive: https://listarchives.libreoffice.org/global/users/
> Privacy Policy: https://www.documentfoundation.org/privacy


+------------------------------------------------------------+
 Michael D. Setzer II - Computer Science Instructor 
(Retired)     
 mailto:mi...@guam.net                            
 mailto:msetze...@gmail.com
 Guam - Where America's Day Begins                        
 G4L Disk Imaging Project maintainer 
 http://sourceforge.net/projects/g4l/
+------------------------------------------------------------+




-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? https://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: https://wiki.documentfoundation.org/Netiquette
List archive: https://listarchives.libreoffice.org/global/users/
Privacy Policy: https://www.documentfoundation.org/privacy

Reply via email to