It might not be an email integration problem but I would like to get solutions on it using various software available on internet or programming it using API.
Task:
I send money transaction confirmation emails using php/.net code to people and cc it to myself too. It is required to show the email to someone who does not have access to the email account.
Is it possible to automate any of the following:
Any way of showing an email sent from code/gmail/mailchimp/mandril/zapier/sendgrid as url
Any service already available that takes a screenshot of email from gmail/mailchimp/mandril/zapier/sendgrid etc. and post on a public url using ftp details
Programmatically take a screenshot of email sent from code/gmail/mailchimp/mandril/zapier/sendgrid and post on a public url using ftp details
Any other way of making email public of any email sent using code/gmail/mailchimp/mandril/zapier/sendgrid
Related
I'm new in swift programming and I'm working on simple app. However, I was wondering if I can build "Contact us" view controller where the user enters his message and his data sent to me by email. Is it possible?
example:
There are two approaches to send mail from iPhone SDK
You could try MFMailComposeViewController to send an email.
You could set up a web server from where you could send the email with the help of web services.
I’ll suggest building a web service, post this data as a JSON object, make a fancy email at server end and shot it to concerned email id, you have an option to do any additional task.
Like storing a data to db, tagging it specific way and filtering emails from blacklisted email ids.
You can use mail gun or mail trap to help you setup simple way.
Hi i am grapich designer but temporary asked working to check this emails problem.
we are using drupal for our website. When we are using google apps as our email server, the contact form on our webpage (which our customer used to use for sending us question) was stop sending emails seems the mail fuction is not working anymore. Is that because we hosted our emails to google apps? Is there anyway that to make work? We need the contact form on our webpage send mail
If you are using Webform you can set your email address a few places:
This is where the default Webform email is set:
yoursite.com/admin/config/content/webform
and that default can be overridden in the individual Webform E-mail tab:
yoursite.com/node/1234/webform/emails (1234 is node id of your webform)
Drupal also has a global email address for your site that could be used as the default also, so its worth checking here: yoursite.com/admin/config/system/site-information
I am working on website with symfony where users create a page which is publicly viewable and I need to do something so that the users can send an email to their gmail or yahoo or LinkedIn or Facebook contacts(they can choose to whom the mail should go, it's like sending invitations to their mail contacts) about the site saying all about its greatness. I have no idea on what this process called or how to do this ? Do I need to use any Apis or ?
Usually this is done with several invitation channels:
simple email input field
https://developers.facebook.com/docs/plugins/send-button - with Facebook App, but no API call needed, you can just create the code with the code generator
Not sure if there is a possibility to share something with specific LinkedIn accounts, but i assume that you need to use their API: https://developer.linkedin.com/apis
In our SaaS application each company (tenant) is given their custom domain like companyName.ourapp.com
We would like to provide some email services like:
Ability to send and receive email notifications from info#companyName.ourapp.com and similar addresses
Ability to create new email accounts in clients' subdamains at runtime, programmatically, when needed. For example we would have separate emails created for each "opening" so that emails sent to this address would be parsed info would be extracted
Similar tasks
For now I just don't even know on where to look and how this could possibly work.
As far as I understand email it should be some kind of custom mail server (SMTP) serving all sub-domains and having API we can use to send emails, list and retrieve messages etc.
Please suggest how it may work and is there any components out there we can use to implement this.
There are three options for this.
Create an email server and programatically configure it to accept or deny the specific accounts. Then use cron to poll via pop3 or imap and download the messages for the account. You can then send them on for the customer or handle them in your web app.
Create a script that is fired by the email server as it receives each email. The script can then handle what to do with the email as it's received.
Use a third party to receive the email via HTTP Post at your app. Using CloudMailin for example would allow you to create a custom authorization filter that would call your app in realtime and determine if the given account exists and messages should be accepted for it.
I wrote a blog post for Rails about receiving incoming email, however the principals would apply to any programming language and framework.
I have seen some similar questions here on stack-overflow, but in my application i want when user click on confirm button automatic email go to the email id specified in the form with other details.
How can i implement this.
You could just make a post request to a server and have the server then send the email.
You cannot send emails automatically without sending the user to the mail application. You could however, take advantage of a third party service like Amazon Simple Email Service http://aws.amazon.com/ses/ to send the message.