How to (configure) send mail using content pages in umbraco 7? - umbraco

I am working on Umbraco project,i want to implement functionality like sending email using gmail.
I known how to implement it using c# code but i don't know how to configure it dynamically by adding content pages in umbraco.
Anyone have idea about this? Thanks in advance.

You may have to listen to the events of your interest and execute your code to send the email. For details on events supported by umbraco check out https://our.umbraco.org/documentation/Reference/Events/

Related

Mandrill - View In Browser Functionality

This question was discussed about 2 years ago.
Do we have any feature built-in Mandrill since then to cater to the requirement mentioned in that link of displaying every email sent through Mandrill in browser by adding a "View In Browser" link? If not, then I am leaning towards implementing something similar to what #Muleskinner did (again mentioned in that link as one of the responses). Please let me know what you guys think about it?
Would strongly recommend using a full-featured templating service on top of mandrill (we use sendwithus. Services like that provide a templated URL that can power this sort of thing, and you won't have to worry about building and hosting the templates yourself.
Finally I have managed to implement the requirement mentioned above. Explanation below for anyone else looking for help on the same subject:
Mandrill still DOES NOT have any such feature out of the box. So we need to implement this on our own. What I am doing is immediately after sending every email through Mandrill, I call its Render method which gives the resultant parsed template in HTML with all customers' information and storing it in the system for future use.

Is it possible to make a custom, realtime twitter widget?

I'm having a bit of trouble finding any resources about making a custom Twitter widget for a site.
Basically, I want to create a realtime twitter feed to implement within a site, that automatically updates every few seconds to show new tweets.
I know this used to be possible, but it seems like Twitter just wants me to use their default widget these days instead of my own solution.
Does anyone have any tips / links to good resources?
Thanks in advance!
A possible solution is available which can be implemented in our website. You can try twitters streaming API. Its a technique of keeping a permanent connection between two endpoints; one at twitter side and other at our website. The technique is similar to a chat application where connected ports listen for any changes and update the changes in our side.
Please refer twitters streaming API

How to implement chat functionality in windows phone 7.5?

please tell me idea for how to implement chat functionality in WP7?in my app i need to communicate from one user to another user.how to achieve this?
what is the better way to implement chat?
Please tell me idea for this...
thanks in advance
Try searching for Silverlight 3-4 chat implementation. One of the results might help you: Multi Room Chat Application using SilverLight 4.0 and PollingDuplex
For displaying chat, you can use Conversation View from Telerik
Twilio is a librarie that supports chat/sms or even VoIP and they have a .NET Api. Don't know if it will work on WP: https://www.twilio.com

Eventbrite at-the-door API

Trying to set up an at-the-door ticketing solution for an upcoming makerfaire. We're contractually obligated to use eventbrite, but really don't want to use their ipad app so I'd like to programatically add an at-the-door cash ticket but don't see how to do that.
Anyone have ideas?
thanks!
--Derek
Currently, this use-case is not available via the API.
You can manually add attendees using Eventbrite's web-based interface.
If you really needed to automate that process, you could try scripting something with selenium / webdriver.

Redmine: create issues via GET request

In JIRA it is possible to create new issues through a simple GET request: http://confluence.atlassian.com/display/JIRA/Creating+Issues+via+direct+HTML+links.
A simple example of such a link:
"http://jira.atlassian.com/secure/CreateIssueDetails!init.jspa?pid=10420&issuetype=3&summary=say+hello+world"
This would create a new issue in project with PID=1042 with summary "Say Hello world".
Is there Redmine plugin/api which allows for such a use case? The REST API is inconvenient for my use since I would like to allow users to create new issues (with pre filled data) through a link sent in email and I don't want to use JavaScript for the job (to send the REST json/xml data).
EDIT:
From what I see (http://www.redmine.org/projects/redmine/wiki/RedmineReceivingEmails) Redmine provides an email API for submitting issues, this would be a parital solution. I would be able to add a "mailto:" link which would pre fill the content of the message.
This solution requires additional emails so still I would prefer to have a post link solution.
I have implemented a basic plugin which fulfills my needs. You can find it at:
http://code.google.com/p/redmine-post-link-plugin/
You could also have a server-side script that actually sends the e-mail. There's no post link solution as far as I know.
You might want to look at the Redmine API for updating and creating issues.
http://www.redmine.org/projects/redmine/wiki/Rest_Issues
In Redmine2 there is oficial API for it.

Resources