J2ME Find Group name and numbers - java-me

i want to find group name and related phone no for my sms application
i know how to find phone book contact name and numbers
but i want to find group name and number.
is it possible with j2me???

See this link for your reference.
PIM API...
You need to get the categories and get the contacts based on your category.
And see this link for how to send the SMS.
Send SMS...

Related

How to gather user information like name and mobile number before Chatbot starts conversation in Dialogflow?

I need to gather the name and mob number of the user before he starts interacting with the Chatbot. How can I do that?
You will need to create 2 parameters - name and phoneNumber to capture name and phone numbers.
Using the #sys.phone-number you can capture phone numbers from the user.
Using the #sys.given-name or #sys.last-name you can capture user's name.
Please note: currently only US English names are supported by the system entities in Dialogflow. So there may be some cases where you may not be able to capture all the names.
gather user information like name and mobile number before Chatbot
In your case, you need to use events
Step 1. trigger an event when your app initialize like from nodejs server and angular
Events are another way to trigger the intent without user interaction
when you intent trigger you can ask information

How to retrieve user phone number in Action for the Assistant

How do i get the phone number of a user, who uses my Dialogflow?
I see email, name and so on in these docs, but I don't see phone number. Is it even possible?
You may need to capture it from the user itself by creating a parameter/entity. Once captured, validate it via webhook if needed for the number of digits.
This is how I am doing:

How to send email template multipe times to same list in Constant Contact?

I am running into an issue where I need to programmatically send the same email campaign to multiple people on a list that are the same via people(same email addresses) multiple times. Constant Contact is not letting me do this.
Example:
I want to use the same birthday campaign year after year and send it out once a year to everyone on my list. However according to the Constant Contact documentation I can only send the email campaign once too new email addresses.
Is there something in the API documentation that will let me do this?
So far all I have encountered is that I need to delete the email campaign, and recreate it using this API command: http://developer.constantcontact.com/docs/email-campaigns/email-campaigns-collection.html?method=POST
Thank you in advance.
Via the Constant Contact api's there is no way to send the same email campaign to the same contact multiple times.
However for the example that you have given there is an automation platform within Constant Contact that will automatically send out a birthday email, but at this time there is no way to programmatically set that up.
If you need to do it programmatically I would create a new campaign for each year, especially since deleting and recreating just creates a new campaign anyway.

setting up nexmo test messaging for classified listings

Here is what I am looking to setup & I'm wondering if it is possible:
I have a classified ads site where people can join the site and then are allowed the ability to email any listing. I would like to add the ability for people to text message listings as well.
Listing owners would add their cell numbers if they would like to be contacted via text message, the site would then allow user to text BUT it would not show real phone numbers, each listing owner would be assigned a nexmo number and if they choose to give out their phone numbers, they can.
Then, I would also like the ability to send out a general broadcast to all users. Is this possible? And, if so, how would I integrate something like this?
Yep all of that is possible with Nexmo you seem to have 3 or 4 separate use cases here so lets break those down:
When your users sign up for your site you'll want to capture their Cell numbers against their account, you might want to use the Nexmo Verify product as part of that signup to ensure you have a correct and valid mobile number.
For users to be able to add listing via text you would need to get a nexmo number for them to send their listing to, that would be one number for the whole site and you could look at the senders number to link the message to an account (from the one you captured at registration) If you don't recognise the sender of a listing message then you'll want to send back some kind of response asking them to register and a link.
For buyers to contact sellers without revealing their numbers this is a very common use case called 'Message (or Call) Proxy' you need to rent a number for each seller (or listing) so you'll need to factor that into your pricing, then you forward any messages sent to the number to the seller, you will also have to implement some logic to handle replies and track state in your application, within SMS there is no concept of a reply so each message has no association with the previous one, this is a bit tricky when you have several conversations going on over the same number.
Finally the 'broadcast' this would just be a case of iterating over the list of numbers you have for your users and sending the message to each one, you will need to ensure that you comply with any regulations around sending of bulk messages in the country you are sending to, more details for that are on the nexmo knowledgebase https://help.nexmo.com/hc/en-us

Send Information to Sharepoint via Email and integrate into a List

I have an Idea but could not find out if it is possible. I will line out, what I want to do and hope that someone can tell me, if it is possible.
I want to collect structured Information from many people within but also outside my organisation (LAN). The Information is very easy Say X = ?, Y = ? to M = ?. The Idea is to send out the request via Email and let the people respond to a SharePoint Email Address (I know that there is the possibility for example for document libraries to receive emails). Now the trick would be to extract the Information automatically into a SharePoint list which I can use further.
Is that possible? I found some Information on InfoPath and Form Libraries but I can't find a concrete example where a Information extraction takes place from an Email content.
Thanks a lot for your help!
Richard
I'd say create 2 lists, one for the email submission and another for the replies. The first list that handles the email submissions is going to hold all the information you want to tell your recipients. From there, you kick off a Visual Studios workflow that you deploy to your farm. In this workflow, you customize the Send Email From Address to the "incoming email" address to the second list. You then can take the replies and extract the information there. In summary:
List 1 - Email Submission
List 2 - Email Replies
List 1 has a Visual Studios workflow assigned to it called "Submit Request"
When a new List 1 item is created, the workflow uses the fields in the list item and puts it in your email inside the workflow.
"Submit Request" workflow customizes the Send From address to an email address (i.e. InfoRequest#sharepoint.com)
Set the incoming email of List 2 as that email address (InfoRequest#sharepoint.com)
You may be able to edit the from address using REST in sharepoint 2013 workflows. Check out this link: http://blogs.msdn.com/b/spses/archive/2014/10/24/you-can-t-specify-the-from-address-for-email-messages-when-you-use-the-quot-send-an-email-quot-option-from-a-sharepoint-designer-2013-workflow-action.aspx

Resources