Hi everyone,
I'm evaluating the buying of the plugin of JEMH.
I'm testing it in the stage enviorment.
In detail, I want to save in a custom field *only* the other senders of the email *without* the email cc.
Is this possible?
Hello,
In detail, I want to save in a custom field *only* the other senders of the email *without* the email cc.
Can you please be more specific about what addresses you want to store?
By Default if JEMH is configured to store addressee addresses in a custom field, this will include all To: addresses that do not match the catch email address, in addition to the CC'd addresses.
If you only want to store the sender address that can be achieved via JEMH Profile -> Email -> Sender Processing -> Non-JIRA user sender address to Text custom field
For further discussion, please create a support request with us directly: The Plugin People - Jira
Kind Regards,
Reece
Thank you Reece,
for example I create a JEMH profile that polling the email test.jira@somedomain.com
If for example we send an email:
from sender@somedomain.com
to: test.jira@somedomain.com; me@somedomain.com; you@somedomain.com
cc: cc1@somedomain.com; cc2@somedomain.com; cc3@somedomain.com
I configured the JEMH profile in the email section:
CC Email Custom Field Email CC
But in the emailTo I find not only me@somedomain.com and you@somedomain.com but also the CC addressee (cc1.. ecc).
I want to store only the to recipient.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you only want to store the to address, you can achieve this via JEMH Custom Field Defaults
Using a dynamic velocity scripted value for your custom field default, you can store the incoming to addresses by using the following script:
#foreach ($recipient in $message.getHeader("To"))
$recipient
#end
If you require any further assistance, please raise an issue in our Jira directly: The Plugin People - Jira
Kind Regards,
Reece
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.