I am sending fax using c# (domino.interop.dll). In my specific scenario if a particular fax fails to deliver then the fax delivery mail should be triggered. Is there any option to set the fax delivery report?
How can I do that in c# ?
FYI,
I am referring to http://www.codeproject.com/Articles/29442/Send-Lotus-Notes-Email-Using-C except the fax address is different.
Related
I recently started using Twilio to send SMS in one of my apps. Although the twilio's dashboard shows that the SMS was send using the set alphanumeric sender id. It arrives on my phone with a different number totally. Anyone have any idea why? There's nothing about this on the Twilio website.
It turns out this is a carrier problem. They can change sender id (within reason) to increase the chance that an SMS is delivered. So there's basically nothing Twilio can do about it.
If you still have doubts, contact Twilio support.
How can I send email to email address like महाराजा#test.com? I am using spring and java mail for sending emails. I get exception javax.mail.internet.AddressException: Local address contains control or whitespace in string while sending the email.
Unfortunately javax.mail does not yet support the RFC 653x family of standards that enables internationalised e-mail addresses. Bug tracker
Actually right now very little internet mail infrastructure supports it, so you're probably not missing much, yet.
Does anyone know how to send an email to Righfax? We are currently send faxes to Righfax through vb6 api calls, but when I send an email address I get an invalid character in phone number field. But the fax info uses the same field. I don't know how to set the flag to tell it that its an email. Help...someone...please:(
I've used it years ago and I used the vendor's RightFax api to achieve what you wanted.
The docs for the API are here.
In Windows Phone 7 sms delivery reports are present in kernel, however they are not customizable. You get an sms delivery report as another sms message. But everyone knows that sms delivery report is not an sms - it's an attribute of a sent message.
iPhone has an app called iPhoneDelivery which allows to customize the way the delivery reports are presented to a user. It allows the best approach - as an icon of an envelope to an already sent sms message. Same applies to Android.
Is it possible to create such an application for Windows Phone 7 at this time? Does the WP7 SDK allow "messing" with internal sms application?
The current API provides no way to access previously sent SMS messages; so attributes such as delivery reports cannot be queried. The only access to SMS right now is the SmsComposeTask but even this requires the user to hit the send button, so an app cannot automatically send text messages.
My client has a website but doesn't check emails often. He has a lot of web enquiries through the online contact form. He carries a mobile phone though. How to send contact form details that's submitted through the website to his mobile phone as SMS?
The quickest and cheapest way is to determine the email address for that person's phone. Almost every cell phone has an email address you can send to which will show up as SMS on the device. This should help you find the email address for each carrier: http://www.makeuseof.com/tag/email-to-sms/
If you want to send an actual SMS instead of an email, you could try a service like Twilio which makes sending and receiving SMS from your apps easy via a REST API. [Full disclosure: I work at Twilio, but I was a long-time satisfied customer before starting here.]