-
-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Calendar events (iCalendar vEvent) #138
Comments
Hi @sven-mvolution, that's a good point! I will think about a proper solution. |
I've been trying to create a MimeMessage by hand with an ical event in it using ical4j, but I've been unable to get gMail or Outlook to cooperate with me. It keeps seeing it as a simple attachment. I'll keep playing around. |
Hi @bbottema - thanks for further investigating and considering this a useful enhancement!
|
Some how Simple Java Mail manages the bodyparts better than when I do it manually :D It works in Outlook 365 for me, but gMail still refused and only displays it as an attachment. I wonder if it even still works at all in gMail. |
Implemented for the 6.0.0 release. Usage is simple:
Thanks for the help @sven-mvolution! |
Released in 6.0.0-rc1. |
6.0.0 has released as well, finally. |
Hi and thanks a lot for this great library!
My feature request: I would like to use Simple Java Mail to send calendar invitations, which have to smoothly integrate with Gmail/Google calendar and MS Outlook but should also get properly displayed in any ordinary client. This means I have to create multipart/alternative messages consisting of 3! alternatives: text/plain, text/html and text/calendar - at least MS Outlook is sending such invitations. Simply adding the ICS as attachment does not work with Outlook.
I found no way how to do this with Simple Java Mail, e.g. there is no
setTextVCalendar()
oraddCustomText(String text, String mimeType)
.What do you think?
The text was updated successfully, but these errors were encountered: