YouTrack - send out email to requester when issue is resolved - youtrack

We have email integration setup such that users can email YouTrack as a Help Desk. What I would like to setup is a workflow such that when the issue moves to a resolved state the requester will get a notification that the issue is fixed.
I can add another field in there for "requested by" as a string and create a workflow that fills that in with the requester email address (who is not a YouTrack user, hence the string) and then use that in another workflow but first I was wondering if:
That is the best approach and
anyone have an existing workflow they'd like to share to help me get started?
Thanks in advance!

Related

Reviving email thread with Google Apps trust and Safety team

As a dev I have inherited a Google app that is not verified.
The app was left mid-way through the verification process, and the email thread mentioned on the OAuth consent screen section has long since been deleted (I have access to said admin email address, and it isn't there):
I have looked through google help resources and stack overflow questions such as this:
Comply with domain verification requirements
But I can't seem to find a way to restart or resurrect this email conversation with Google having deleted the original thread. I don't really want to have to delete the existing app and create a new one as there are customers using it (as an unverified app).
Is there a way for me to have the verification emails resent, does anyone know?
For some additional context - I want to reopen the verification conversation to allow only enterprise accounts to use the app, as described here: https://support.google.com/cloud/answer/9110914#enterprise&zippy=%2Cmy-application-has-users-with-enterprise-accounts-from-another-google-workspace-domain-how-does-this-apply-to-my-google-workspace-or-cloud-identity-enterprise-accounts
Thanks in advance
My bad - you just have to go in and edit the app, make any change, and you are prompted that a new email will be sent.

Could anyone provides me two Restcomm accounts

I hava registered RestcommONE account for many days,but RestComm administer still not validate my account creation request. Could anyone provides me two Restcomm accounts to learn how to use Restcomm-android-sdk.
Thank you very much.
That's odd. Your account should have been approved within a day or two. Please send an email to support#telestax.com from the email address you used to sign up, so they can look into the issue for you ;)

Mail trigger in UCM

I have a requirement that mail should be triggered when content is either checked in, checked out or updated. Currently the workflow is not enabled. Can someone please suggest how this can this be done?
I tried using workflow criteria, but the mail is getting triggered only for new check-ins. One further confusion is that the mail is getting triggered before the workflow is being approved, but this should not happen.
Thanks in advance,
Deepthi
How about using a Subscription?
A subscription is a function that notifies users by email when a
particular content item has been revised.

Mailchimp API (v1.3): addresses added with listSubscribe() don't appear in dashboard

I'm using Mailchimp's API (v1.3) to add email addresses to a subscriber list on one of our sites. Obviously, I'm using listSubscribe() and everything is working fine, for the most part (read: API call returns true, all of the data I'm sending to Mailchimp gets added/updated correctly).
The problem, however, is that whenever a new address is added, the things that are normally supposed to happen (in particular: email notifications to list manager, addresses showing up in the dashboard list status stream) aren't happening.
I've looked around for quite a bit and haven't found anyone with the same issue. Any ideas?
The default action of listSubscribe to add a subscriber is opt-in. This means that when you submit a listSubscribe the subscribed user will get an email asking to confirm their opt-in.
If the user does not follow the link in the email then they will not appear in the dashboard.
You can bypass this by using:
'double_optin' => FALSE,
http://apidocs.mailchimp.com/api/1.3/listsubscribe.func.php
However this is only recommended for very occasional circumstances (essentially where you are handling the opt-in).
In my case I am not activating a user account until they verify their email address. If let the opt-in email be sent then the user is going to get a number of emails from my web app. I'm being very careful to make sure that they're verifying their subscription and all subscription stuff is being processed by the web app (eg a user unsubscribes within the web app, not via MailChimp).
I talked to the Mailchimp support, and they said those actions won't happen using their public API; there is no way to trigger them.

In redmine how do I Send notification with new issue id to sender of email that created the issue

I have Redmine set to create issues on incoming email - unkown_user=create. I would like to send the user an email confirming receipt of the issue with the new issue id. Is there a way to do this?
On a related note, while the user is getting created in Redmine the new user does not get any notification on the account creation.
Notification to existing users work.
TIA
There is no confirmations on incoming emails. I am working on this for a client and we will be adding it to ChiliProject once it's ready (few minor bugs left). If you wanted to look at the code, I have it in a branch on github.
To answer your second question, the MailHandler doesn't notify new users when they are created. It would be a simple feature to add since the mailer code is already done. Basically add a Mailer.deliver_account_information().