Hi,
I want to use the ScriptRunner built-in script send custom email in order to send MS Outlook invitations.
I am already able to create an ICS-Attachment on the issue with a custom scriptrunner script. And I am able to send this attachment with the built-in script but in Outlook it would not be detected as an invitation mail.
In this stackoverflow-entry I found a hint about how to create proper Outlook invitations and I wonder if it would be possible to adopt this somehow.
Kind Regards,
Christian
First, you should test licensing using ThirdPartyPluginLicenseStorageManager, and if the license is not valid, You should pass empty velocity parameters to your view.vm. Otherwise, You should pass your velocity parameters.
Map<String, Object> velocityParams = new HashMap<String, Object>();
if(!hasLicense()){
return velocityParams;
}
...
velocityParams.put("setvals", setValuesList);
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
First, you should test licensing using ThirdPartyPluginLicenseStorageManager, and if the license is not valid, You should pass empty velocity parameters. Otherwise, You should pass your velocity parameters.
Map<String, Object> velocityParams = new HashMap<String, Object>();
if(!hasLicense()){
return velocityParams;
}
...
velocityParams.put("setvals", setValuesList);
...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.