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

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().

Related

Email addresses automatically getting added to Global Unsubscribe after API send

I have a weird problem where some email addresses are automatically getting added to my Global Unsubscribes after each API send to that address.
The initial email gets sent and delivered, but then the receiving address is automatically added to the group, and any subsequent API sends will cause the email to get dropped immediately. I have to manually remove the addresses every time.
Does anyone have any ideas what could be causing this?
I had the same issue, it seems like some spam filters "click" all the links that are in emails. I also contacted sendgrid support and they confirmed that this might be the case and there is nothing they can do about it.
Unfortunately the only solution I could come up with is a two step unsubscribe, that you have to implement yourself. Creating unsubscribe links that redirect you to your own server, where you add a confirmation step.

Is there a event handler for new comments for Facebook comment plug in?

I am trying to leverage Facebook comments plug in and push notifications for post on my page. What I am basically trying to do is:
user creates a post
the Facebook comment is dynamically inserted for that post by suffixing id from that post.
The above two are already done in the page.
Now what I want is, when someone posts, a push notification is subscribed if the user allows and when a comment is made a push notification is pushed to the user. The user is identified by the ID of the post as well which is stored on database.
I tried to attach a event handler on Facebook iframe comment box but was thrown with cross origin error.
I was trying webhooks but couldn't work on local host and found I need ngrok to validate my test url. I am posting this to ask is that is my flow even valid or I am seriously misunderstanding the concept. If someone could validate my flow.I will be happy to work on it or I will be just wasting my time.
Here's the link with the Facebook comments applied on post:
https://helpingcow.com/postit/get_share_listings
The facebook have killed "comment.create" event subscriptions.See the answer here to my related question answer.The preferred method is to use webhooks.
As I have already mentioned in question,that I cant use ngrok because it only supports python 3.6 and above and I have 2.7.
But I used localtunnel from npm.It did the work and I have validated my localhost url and test webhooks are now functional.I really dont need the data from the json payload from webhooks but just need a way to get to id of the posted item when the facebook comment is posted but there is no way the client can know about that event unless some server sent events are used.

Email Alerts Not Working in Kimono

The email alert I setup did not notify me when new data was added. I can see the new data on the site, but the email never came through. I have even checked my spam and nothing is there.
Do you use the same email as the one in your account information ?
If not try with your account email.

YouTrack - send out email to requester when issue is resolved

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!

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.