How can i send emails from guile script? Is there any module for that
purpose? I know that there is mailutils but can't figure out how to do
that with it. Please, show me some examples.
--
Konrad
I use msmtp for my needs.
(define (send-email)
(let ((port (open-pipe* OPEN_BOTH "msmtp" SMTP_MAIL_TO_SECRETARY)))
(display (smtp-body) port)
(close-pipe port)))
Works great.
Konrad
Is there any solution to convert charset from one encoding to another?
I have database in iso-8859-2 but my script runs in utf-8. I use dbi module.
--
Konrad
C_TELEPHONE="pl_PL.UTF-8"
LC_MEASUREMENT="pl_PL.UTF-8"
LC_IDENTIFICATION="pl_PL.UTF-8"
LC_ALL=pl_PL.UTF-8
Any idea?
Konrad
W dniu 23.10.2014 o 20:00, Mark H Weaver pisze:
Konrad Makowski writes:
Is there any solution to convert charset from one encoding to ano
O problem resolved and was not related to mysql or locale but my mistake.
Konrad
W dniu 25.10.2014 o 09:03, Konrad Makowski pisze:
I'm using MySQL. And figure out that if i send query: "SET NAMES utf8"
or "SET NAMES utf8 COLLATE utf8_general_ci" to the database (in
te
r
because i not disable this wrong procedure from code.
Konrad
W dniu 25.10.2014 o 20:51, Thien-Thi Nguyen pisze:
() Konrad Makowski
() Sat, 25 Oct 2014 10:24:34 +0200
O problem resolved and was not related to
mysql or locale but my mistake.
If you explain the mistake now, maybe it wi
Hello,
Can you give an example of uploading files to an ftp server with guile-curl?
konrad
Hello,
Is there a native way to send files to an ftp server in Guile, or is it
better to use an external program like ftp / scp?
--
Konrad