Automated Emails with Ionic - email

I have developed an ecommerce mobile application using Ionic Framework for Android. Now, my need of the hour is that whenever a customer makes a purchase and checkouts of the app, i need to send an automated email to the administrator about the order placed. All the tutorials and resources explain it how to send it with the aid of third party services like Gmail, where the customer has to explicitly select the service through which he wants to send the mail.

You can use zapier to automatically send emails.

Related

How the users can send each others payment in flutter

My app is a multi vendor app, here the users will sell and buy each other's products, I need to integrate the paypal payment in my app, I have tried a code in which a user can send money in an account(the account whose client id and secret key I have defined in the app) but I need something where users can send money to each other. Please help me!
The users can send payment using each other's email id without needing of client id and secret key. You can use the flutter_inappwebview flutter package for paypal payment integration. Moreover you can also create your own php code. I have found an article on paypal payment integration in php, here is the link:
https://phppot.com/php/paypal-payment-gateway-integration-in-php/ you can put this code on your server and access it in your app using flutter_inappwebview package.

How can i implement payment through payment with two receivers?

Working on Android Application which provides platform for users to sell and buy their used products. Below is the scenario of payment screen when User(buy) want to bought an item.
How can i do this payment with paypal adaptive payment. I found something Parallel payment api but in this api doing parallel payment form owner's account need same thing with dynamic customer account.Every thing needed in PHP to develop web service will be used in android application.
Thanks.
Adaptive Payments, specifically the Pay API. That is how you would do the split payment as either parallel or chained.
From mobile apps I typically build the web services on a server, so you can still write everything in PHP and just pass data to and from PayPal back to the app through the PHP service. Then you make simple serice requests to your own PHP script and have it just return a basic JSON response or whatever you want to work with in the mobile app.
There may be more direct ways to get it done, but that's what I've always done and it works well. Allows you to use your web server for more detailed logging, too.

woocommerce - send order email notification to customer approval

I'm building an e-commerce site using woocommerce, my business is like Business to Business (B2B).
There is a lot of company that will use my system, every company will have one "Approval" and have many user for customer, So, if my customer (which mean an employee of some company) buy my products from my e-commerce website, I want the email order notification sent to my customer boss who will approve their order.
is there any plugins for this? or if I need to do some code adding on PHP function, how can i do it?
Thank you.
It sounds like you need a request a quote plugin:
http://codecanyon.net/item/woocommerce-request-a-quote/6460218
Than you can just setup the above plugin, and integrate with gravity forms if needed to customize the send to email and other needed forms.

How to automate a donation receipt system

I volunteer for a nonprofit which accepts donations via Paypal. My job is to log into the Paypal account, note down the particulars about a donation (name, date,amount, etc), populate those fields in a template receipt stored in Google drive, download a pdf of the receipt created, and use the nonprofit's Gmail account to send the donor a confirmation/thank you mail, with the generated receipt as attachment.
Is there a way to automate this whole process and make it instantaneous? This will be cool (and will save me quite a bit of labor). If there is no specific answer, do you have any general path I can follow? Also, if we move from PayPal to, say, a bank, can the same thing be done?
I only know bash programming and Fortran, but I may be able to learn what's needed to do this job.
thanks for reading my question!
Yes. You would use Instant Payment Notification (IPN) for that.
Basically, you create a script that sits on your web server and "listens" for data. Any time a transaction hits your PayPal account their server will POST all of the data about that transaction to your listener script.
Your script receives the data, and within it you can process the data however you need to. You can generate customized email receipts like you've mentioned, update databases, hit 3rd party web services, etc. It happens automatically and in real-time.
It's an extremely valuable tool that will let you automate tasks based on payments, refunds, disputes, etc.

iPhone application user registration and billing via apple ID account

We are building an iPhone application for our project and I'm concerned that the only way for user to:
register an account;
buy extra content
Is via the user's Apple ID account. This is bad for us because:
We don't get user details data
30% of sum goes to Apple
But as my colleagues say it's the only proper way to handle this - otherwise application can be banned from appstore. So could I have a registration/payment on website somehow be implemented inside the iPhone app? And in what way can this be done?
Take a look at how Evernote implement their service. You can subscribe to the Premium service from within the app via In-App Purchases, you could also do the same from their website, using credit cards or any other forms of online payment.
The key here is the user's email address. When the user signs up, they provide the service with their email address which is basically tied to as a username. I'm pretty sure you know what you can do next using the email address. Good luck!