* send agenda-weekly-view via email html formated
@ 2021-10-31 8:09 Uwe Brauer
2021-10-31 8:33 ` Ihor Radchenko
0 siblings, 1 reply; 12+ messages in thread
From: Uwe Brauer @ 2021-10-31 8:09 UTC (permalink / raw)
To: emacs-orgmode
Hi
I know I can save my weekly agenda view as a HTML file and then send it as as attachment.
I was wondering whether someone knows about a function, already doing it.
I googled and I also looked up the available package, without any results.
Anybody has an idea?
Thanks and regards
Uwe Brauer
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 8:09 send agenda-weekly-view via email html formated Uwe Brauer
@ 2021-10-31 8:33 ` Ihor Radchenko
2021-10-31 8:47 ` Ihor Radchenko
0 siblings, 1 reply; 12+ messages in thread
From: Ihor Radchenko @ 2021-10-31 8:33 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> Hi
>
> I know I can save my weekly agenda view as a HTML file and then send it as as attachment.
>
> I was wondering whether someone knows about a function, already doing it.
> I googled and I also looked up the available package, without any results.
>
> Anybody has an idea?
You can export agenda to txt, org, html, pdf, ps, or ics using C-x C-w
in agenda (org-agenda-write).
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 8:33 ` Ihor Radchenko
@ 2021-10-31 8:47 ` Ihor Radchenko
2021-10-31 9:34 ` Uwe Brauer
0 siblings, 1 reply; 12+ messages in thread
From: Ihor Radchenko @ 2021-10-31 8:47 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Ihor Radchenko <yantar92@gmail.com> writes:
> Uwe Brauer <oub@mat.ucm.es> writes:
>
>> I know I can save my weekly agenda view as a HTML file and then send it as as attachment.
Sorry, I misread your first message. Attaching and sending is easy:
(defun org-agenda-email ()
"Email agenda in current buffer as attachment."
(interactive)
(let ((to (read-string "Send to: "))
(subject (read-string "Subject: ")))
(unless (derived-mode-p 'org-agenda-mode) (user-error "Should start from agenda view."))
(org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer))
(compose-mail to subject)
(save-excursion
(goto-char (point-max))
(mml-attach-file (file-name-concat (temporary-file-directory) "agenda.html")))))
Best,
Ihor
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 8:47 ` Ihor Radchenko
@ 2021-10-31 9:34 ` Uwe Brauer
2021-10-31 9:37 ` Uwe Brauer
2021-10-31 9:42 ` Ihor Radchenko
0 siblings, 2 replies; 12+ messages in thread
From: Uwe Brauer @ 2021-10-31 9:34 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1934 bytes --]
>>> "IR" == Ihor Radchenko <yantar92@gmail.com> writes:
> Ihor Radchenko <yantar92@gmail.com> writes:
>> Uwe Brauer <oub@mat.ucm.es> writes:
>>
>>> I know I can save my weekly agenda view as a HTML file and then send it as as attachment.
> Sorry, I misread your first message. Attaching and sending is easy:
> (defun org-agenda-email ()
> "Email agenda in current buffer as attachment."
> (interactive)
> (let ((to (read-string "Send to: "))
> (subject (read-string "Subject: ")))
> (unless (derived-mode-p 'org-agenda-mode) (user-error "Should start from agenda view."))
> (org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer))
> (compose-mail to subject)
> (save-excursion
> (goto-char (point-max))
> (mml-attach-file (file-name-concat (temporary-file-directory) "agenda.html")))))
Thanks I run a test in an org-agenda and obtained
,----
|
| Debugger entered--Lisp error: (void-function file-name-concat)
| (file-name-concat (temporary-file-directory) "agenda.html")
| (org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer))
| (let ((to (read-string "Send to: ")) (subject (read-string "Subject: "))) (if (derived-mode-p 'org-agenda-mode) nil (user-error "Should start from agenda view.")) (org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer)) (compose-mail to subject) (save-excursion (goto-char (point-max)) (mml-attach-file (file-name-concat (temporary-file-directory) "agenda.html"))))
| org-agenda-email()
| funcall-interactively(org-agenda-email)
| apply(funcall-interactively org-agenda-email nil)
| repeat-complex-command(1)
| funcall-interactively(repeat-complex-command 1)
| call-interactively(repeat-complex-command nil nil)
| command-execute(repeat-complex-command)
`----
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 9:34 ` Uwe Brauer
@ 2021-10-31 9:37 ` Uwe Brauer
2021-10-31 9:58 ` Ihor Radchenko
2021-10-31 9:42 ` Ihor Radchenko
1 sibling, 1 reply; 12+ messages in thread
From: Uwe Brauer @ 2021-10-31 9:37 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 2196 bytes --]
>>> "UB" == Uwe Brauer <oub@mat.ucm.es> writes:
>>> "IR" == Ihor Radchenko <yantar92@gmail.com> writes:
>> Ihor Radchenko <yantar92@gmail.com> writes:
>>> Uwe Brauer <oub@mat.ucm.es> writes:
>>>
>>> I know I can save my weekly agenda view as a HTML file and then send it as as attachment.
>> Sorry, I misread your first message. Attaching and sending is easy:
>> (defun org-agenda-email ()
>> "Email agenda in current buffer as attachment."
>> (interactive)
>> (let ((to (read-string "Send to: "))
>> (subject (read-string "Subject: ")))
>> (unless (derived-mode-p 'org-agenda-mode) (user-error "Should start from agenda view."))
>> (org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer))
>> (compose-mail to subject)
>> (save-excursion
>> (goto-char (point-max))
>> (mml-attach-file (file-name-concat (temporary-file-directory) "agenda.html")))))
> Thanks I run a test in an org-agenda and obtained
> ,----
> |
> | Debugger entered--Lisp error: (void-function file-name-concat)
> | (file-name-concat (temporary-file-directory) "agenda.html")
> | (org-agenda-write (file-name-concat (temporary-file-directory) "agenda.html") nil nil (current-buffer))
> | (let ((to (read-string "Send to: ")) (subject (read-string
> | "Subject: "))) (if (derived-mode-p 'org-agenda-mode) nil (user-error
> | "Should start from agenda view.")) (org-agenda-write
> | (file-name-concat (temporary-file-directory) "agenda.html") nil nil
> | (current-buffer)) (compose-mail to subject) (save-excursion
> | (goto-char (point-max)) (mml-attach-file (file-name-concat
> | (temporary-file-directory) "agenda.html"))))
> | org-agenda-email()
> | funcall-interactively(org-agenda-email)
> | apply(funcall-interactively org-agenda-email nil)
> | repeat-complex-command(1)
> | funcall-interactively(repeat-complex-command 1)
> | call-interactively(repeat-complex-command nil nil)
> | command-execute(repeat-complex-command)
> `----
I debugged it the problem is file-name-concat.
I am running Emacs master 83a915d3dfafd5f3d737afe
not too old, I'd say
But that function is not defined.
😇
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 9:34 ` Uwe Brauer
2021-10-31 9:37 ` Uwe Brauer
@ 2021-10-31 9:42 ` Ihor Radchenko
2021-10-31 9:58 ` Uwe Brauer
1 sibling, 1 reply; 12+ messages in thread
From: Ihor Radchenko @ 2021-10-31 9:42 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> Thanks I run a test in an org-agenda and obtained
>
> ,----
> |
> | Debugger entered--Lisp error: (void-function file-name-concat)
That's a function from latest Emacs. You may also use simple concat or
even directly "/tmp/agenda.html" (temporary-file-directory is only
available from Emacs 26).
Best,
Ihor
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 9:37 ` Uwe Brauer
@ 2021-10-31 9:58 ` Ihor Radchenko
0 siblings, 0 replies; 12+ messages in thread
From: Ihor Radchenko @ 2021-10-31 9:58 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> I am running Emacs master 83a915d3dfafd5f3d737afe
> not too old, I'd say
>
>
> But that function is not defined.
>
> 😇
That's 6 month old :D
file-name-concat is 3 month old (f04f8126f0).
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 9:42 ` Ihor Radchenko
@ 2021-10-31 9:58 ` Uwe Brauer
2021-10-31 10:07 ` Ihor Radchenko
0 siblings, 1 reply; 12+ messages in thread
From: Uwe Brauer @ 2021-10-31 9:58 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 533 bytes --]
>>> "IR" == Ihor Radchenko <yantar92@gmail.com> writes:
> Uwe Brauer <oub@mat.ucm.es> writes:
>> Thanks I run a test in an org-agenda and obtained
>>
>> ,----
>> |
>> | Debugger entered--Lisp error: (void-function file-name-concat)
> That's a function from latest Emacs. You may also use simple concat or
> even directly "/tmp/agenda.html" (temporary-file-directory is only
> available from Emacs 26).
Thanks, works very nicely, I only will send it inline, because then it is nicely displayed in HTML enabled MTA.
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 9:58 ` Uwe Brauer
@ 2021-10-31 10:07 ` Ihor Radchenko
2021-11-01 9:26 ` Uwe Brauer
0 siblings, 1 reply; 12+ messages in thread
From: Ihor Radchenko @ 2021-10-31 10:07 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> Thanks, works very nicely, I only will send it inline, because then it is nicely displayed in HTML enabled MTA.
---(mml-attach-file (file-name-concat (temporary-file-directory)"agenda.html")))))
+++(mml-attach-file (file-name-concat (temporary-file-directory)"agenda.html") nil nil "inline"))))
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-10-31 10:07 ` Ihor Radchenko
@ 2021-11-01 9:26 ` Uwe Brauer
2021-11-01 12:58 ` Ihor Radchenko
0 siblings, 1 reply; 12+ messages in thread
From: Uwe Brauer @ 2021-11-01 9:26 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 472 bytes --]
>>> "IR" == Ihor Radchenko <yantar92@gmail.com> writes:
> Uwe Brauer <oub@mat.ucm.es> writes:
>> Thanks, works very nicely, I only will send it inline, because then it is nicely displayed in HTML enabled MTA.
> ---(mml-attach-file (file-name-concat (temporary-file-directory)"agenda.html")))))
> +++(mml-attach-file (file-name-concat (temporary-file-directory)"agenda.html") nil nil "inline"))))
Right, maybe such a function should be included in org?
Uwe
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-11-01 9:26 ` Uwe Brauer
@ 2021-11-01 12:58 ` Ihor Radchenko
2021-11-01 14:03 ` Uwe Brauer
0 siblings, 1 reply; 12+ messages in thread
From: Ihor Radchenko @ 2021-11-01 12:58 UTC (permalink / raw)
To: Uwe Brauer; +Cc: emacs-orgmode
Uwe Brauer <oub@mat.ucm.es> writes:
> Right, maybe such a function should be included in org?
If there is sufficient interest and someone prepares a patch, why not?
But, no other people are participating in this thread for now.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: send agenda-weekly-view via email html formated
2021-11-01 12:58 ` Ihor Radchenko
@ 2021-11-01 14:03 ` Uwe Brauer
0 siblings, 0 replies; 12+ messages in thread
From: Uwe Brauer @ 2021-11-01 14:03 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 372 bytes --]
>>> "IR" == Ihor Radchenko <yantar92@gmail.com> writes:
> Uwe Brauer <oub@mat.ucm.es> writes:
>> Right, maybe such a function should be included in org?
> If there is sufficient interest and someone prepares a patch, why not?
I think even I am able to provide a patch
> But, no other people are participating in this thread for now.
That is very true, so better wait.
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2021-11-01 14:05 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-31 8:09 send agenda-weekly-view via email html formated Uwe Brauer
2021-10-31 8:33 ` Ihor Radchenko
2021-10-31 8:47 ` Ihor Radchenko
2021-10-31 9:34 ` Uwe Brauer
2021-10-31 9:37 ` Uwe Brauer
2021-10-31 9:58 ` Ihor Radchenko
2021-10-31 9:42 ` Ihor Radchenko
2021-10-31 9:58 ` Uwe Brauer
2021-10-31 10:07 ` Ihor Radchenko
2021-11-01 9:26 ` Uwe Brauer
2021-11-01 12:58 ` Ihor Radchenko
2021-11-01 14:03 ` Uwe Brauer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).