I have a requirement to send SMS to the web server from my application. The scenario is this: user will fill a form and send the information through the SMS to the our web server because we want the details of the person who is using the application for our database.
My application is simple text writing application.how can i do this because i haven't work for web.
If you want to send an SMS from your app you will need to use the SMSComposeTask. The user will see the full number of the server and the contents of the message. The user will be able to cancel the sending of the SMS.
So you want to send a POST request to your server, and then your server will send the actual SMS, as a free/paid service?
Simply use HTTP POST with the WebClient. Scott Hanselman wrote a guide
Related
When sending mail from outlook using office.js, is there any feature to send mail individually?
For example, if you have 5 recipients, when you send an e-mail, the recipient can only see your own e-mail.
It has nothing to do with BCC.
Please let me know if that feature can be implemented in office.js.
OfficeJS doesn't provide anything out of the box. But I believe you can use EWS for creating and sending emails in the way you need. See Creating and sending email messages by using the EWS Managed API 2.0 for more information. The makeEwsRequestAsync method can be helpful.
Another possible way is to use Graph API, see Automate creating, sending, and processing messages.
I am trying to make an e-commerce website in Django and react. but I am not able to find a way for this scenario.
whenever a user purchases something a confirmation email should go to the user and one to the admin that a user buy something.
can we do this just by code or we have to use something like Mailchimp?i want to do it by writing code.
You don't need a service like Mailchimp for this. You need to write your own code for sending emails.
To send emails in Django you need to configure a mail server. You can use your own mail server or use providers like AWS SES (Simple Email Service) or SendGrid.
Then you need to write the code that will send two emails after the purchase. Ideally, it should be done in the webhook that will wait for payment confirmation from your payment provider (for example Stripe).
BTW, I'm working on Django+React tutorials at SaaSitive and just committed example code how to send activation emails (after registration) https://github.com/saasitive/django-react-boilerplate
I want to add the ability to send reminders to people via email and SMS for specific events that they have signed up for on a web application that I am building. The email part is not difficult, but I am wondering where to find a good solution for sending SMS messages and very important is the messages will come from sql server not from front end.
Has anyone implemented something like this?
Thanks in advance.
I recommend using Clickatell, unless you have plans to use a different SMS Gateway, if you choose to use Clickatell, then you should check this out: Ways to Connect Clickatell with SQL Server
I see you can send emails with uploaded attachments using the Google Gmail API. However, I want the user to be able to preview the email before sending. It looks like there isn't a way to do this?
So essentially would the only solution be to create my own simple email client, then send the email through the API? Or would using the API even be necessary as in that case I could just use the server's native sendmail client to sent out the email with the user's gmail address as the return address.
I guess using the API, the advantage is the email would appear in the user's SENT folder.
Unfortunately, I don't think there's a live preview that's available in a way you intended. As far as I know, Outlook (for reference) doesn't even have it. What they have is to upload the attachments while the mail is still being drafted.
The best I can think of is once the message will be sent, save it as draft at first and retrieve the mail again on the succeeding page. This will look like a preview that you intended. Once done, you can then finally send the drafted email to the receipients.
I am developing an app.
Can I know How to send a email from app with out using email window.
ie, When I pressed a button I want to send mail automatically.
Without using the mail window.
You can use the MailCore framework, please take a look at this example: http://alwawee.com/wordpress/2012/06/25/how-to-build-mailcore-framework-on-ios/
MailCore is a Cocoa e-mail framework built by Matt Ronge that is the
core of the e-mail client Kiwi. MailCore provides a nice set of
objects for working with IMAP, MIME and SMTP, all of which use the C
e-mail library LibEtPan.