Does magnolia CMS Has these features:
could each user send sms?
could each user has blog?
could each user send fax?
thank you alot
Whether users can send sms or fax depends on whether you connect you Magnolia CMS based system to appropriate SMS/Fax gateway. If you do, there is nothing stopping you from having template on a webpage that would do so or app in admin central that would allow authorised users to send such messages. Similarly you can have custom command that would send sms notification about page being published instead of sending mail. However it all boils down to connecting your installation to such a gateway first.
As for the blogs, there is a blog module that you can install and use, so yes, you can have blogs for users. However if you are looking for software whose primary use case would be to host and manage blogs you will be happier w/ Wordpress or similar products. Magnolia CMS primary function is a web content management.
HTH,
Jan
Related
I'm looking for a way to allow Yahoo application to read user's emails over IMAP. It works well for old applications (that were created before Yahoo Mail API has deprecated), but trying to access IMAP for new applications gives me an error
[AUTHENTICATIONFAILED] (#AUTH007) Bad scope.
Unfortunately, I have no idea how to add a correct scope for accessing IMAP for new applications. During creation of the app, I was not given a choice to add scope with name even looking like 'mail'.
Is Yahoo API just broken or there is some tricky way to work around?
Contact imap-service#yahoo-inc.com
With your Yahoo.com email address and
Brief description of your product.
How will your product use Yahoo user's email content?
How will your product help Yahoo mail users?
What market do you serve?
What is your product's userbase?
Ok i currently send information to my customers through my magento website. I'm curious to know what the difference is between sending emails through my website's server and using a service like mailchimp or mandrill?
Mailchimp has a lot of list management features for the admins such as sub-dividing your list into the most responsive vs least responsive subscribers so you can tailor your message to each (for example), MailChimp has your campaign analytics built into their dashboard, they have fully implemented sign-up buttons for your website, automatically sent subscription confirmation emails, and subscription management forms for the users to decide which lists they want to be on. These are just a few benefits.
Basically:
You could do all that with Magento and Google Analytics and a bunch of custom backend code, but it would be a huuuge amount of work. Then again it all depends on how much you intend on focusing on email marketing. If you're sending a newsletter to a small list, then you're probably fine with sending emails from Magento.
A company I am developing for needs an email service provider where its own non-technical design staff can create an email template using the provider's design web interface. Transactional emails are to be sent to a single recipient specifying the stored template plus insert values.
This is currently being done using MadMimi, and the company wants to also use a second provider for backup.
I have examined the SendGrid documentation, but apparently its web design tool produces templates which can be used only for email sent to lists, not to individual recipients.
(Note: I am coding in Ruby on Rails, but that is irrelevant to this issue.)
Can anyone suggest alternative providers which fit the requirements? Thanks!
In fact, SendGrid's Transactional Template engine allows non-technical people to edit emails meant to be sent to individual people. More can be found on SendGrid's product page and documentation pages.
The problem is -
" I have to design one website, which will contain number of blocks. Each block will refer to different email client. That means, a user of this site can see his/her all mail clients in one one blocks."
The user will provide his/her existing mail clients information (Username and Password) at the time of registering into this site.
So, when user comes to the site he will login by providing username and password of this site (and not with user name or password of any of his mail clients) and he will see his home page containing all his existing mail clients opened directly in one one block (without logging in to any of the mail client).
Basically, this website will help the user to use all mail clients in one page.
Will anybody suggest how to do this task ?
It will be better if working codes will be provided.
This sounds quite difficult - you will need to make a good web mail client, and it is very hard to compete with the existing services in this area. For instance, it would be hard to make a webmail client as good as the one gmail has.
If you can make a good webmail client, the rest is quite easy - the user would give login details for POP/IMAP services for each of their email services, and then you could make your server log in to each of them and pull back any mail to display.
It may be easier for you to purchase existing webmail client software, and then wire it up to a database containing user login details to make the website you require.
I've used this component in the past and may help with sending and reading emails/attachement from a variety of sources.
Rebex.net
I am so confused. My simple requirement is: i have an application which contains confirmation form i.e. nib file. It contains some textFields like name, age, email etc. I simply want when somebody click on submit button application send background and automatic email to email defined in textField. that email contain all information like name, age etc. User need not to fil anything and it should work in background. There are so many application do the same thing. I am creating booking application.
So how can i impliment this behaviour.
Apple does not provide a way to do this - and for good reason. Sending emails from the phone automatically introduces a lot of security risks.
I am willing to bet that the apps that do this use an intermediary server to which they post the data. When the data is posted then the server handles the sending of the emails.
To do this:
Send an HTTPS POST request to your server application.
From your server application, send an email via SMTP (or APIs built on top of SMTP).
Google AppEngine provides a simple and cheap way to create such a web service, running on top of Google's cloud-computing infrastructure. The sending mail from AppEngine help document includes detailed examples of how to send mail from your server application (assuming you use the Python version of Google AppEngine).
Unfortunately, there is no official feature for this but you could download a third-party library. Refer here for a couple of suggestions.