Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
text-message
- Page 1
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
3 Days Ago
by usmanmalik57
…contains three attributes: the user input, the AI
message
(response from the LLM), and the output, which…is the todays date?"}) print(res['output'][0]['
text
']) ``` **Output:**  print(res['output'][0]['
text
']) ``` **Output:**  generated_summary = response.choices[0].
message
.content rouge_scores = calculate_rouge(human_summary, generated_summary) results.append({ 'article_id…
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of
text
classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…quot;content": user_query } ] ) output = response.choices[0].
message
.content if "</think>" in output: response…```python def predict_sentiment(model, sleep_time=0): tweets_list = dataset["
text
"].tolist() all_sentiments = [] exceptions = 0 for i, tweet…
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by policenbicleara
Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate.
Contact form does not working
Programming
Web Development
2 Months Ago
by juan_35
… send successfully, but the email recipient can't receive the
message
. Here is my code: <?php $email_to = 'name@…$_POST['subject']; $
message
= $_POST['
message
']; $headers = 'From:' . $email; if(mail($email_to, $subject, $
message
, $headers)){ echo 'sent'; // we are sending this
text
to the ajax…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Biiim
…;Subject = 'Survey Form filled out'; /* Set the mail
message
body. */ $mail->Body = 'some
message
'; /* Finally send the mail. */ $mail->send…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Salem
… the :, as in `'From: '` 2. Sanitise your subject and/or
message
. You can't in general feed whatever was typed into…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Dani
… with a dummy email. > Sanitise your subject and/or
message
. You can't in general feed whatever was typed into…
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...)
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Dani
I'm not *entirely* sure what gediminas is referring to, but there are services out there such as Zoho Mail, SendGrid, ConstantContact, Mailchimp, Hostinger, etc. which, for the most part, cost money (some are rather inexpensive), but the benefit to using them is that they ensure you're never sending emails to non-existant email addresses, email …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
Follow this article: https://stackoverflow.com/questions/4595730/sending-email-from-localhost
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by programmer_5
Reducing spam bots I strongly suggest to use SMTP, I would prefer to use PHPMailer which get more secure and handle professionally templates.
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
It was a time when anybody could to send a mail from Apache (or IIS) installed on local computer but internet spammers have used that feature for evil purposes. Now you can send emails from an officially registered server only. Even if you manage to send a letter somehow it will not reach the recipient or will be automatically will be placed into …
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by webmaker
Apart from doing some protection to your code, it will more than likely be your ISP not allowing the mail function to work. We have had to get an email acct with permissions allocated to each websites form by our providers.
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Dani
> Emailing became more restrictive in the last year Are you referring to SPF, DKIM, and DMARC?
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by Biiim
Damn, you caught me out on that! I went generalized cause I forgot what it was that happened. But I dug it up: [Google Search:Gmail email restriction in Feb 2024](https://www.google.com/search?q=gmail+restriction+on+emailing+in+february+2024) Is what I was thinking of - but I think my web hosting providors were also complaining about my badly…
Send a text message to your phone from your site!
Programming
Web Development
20 Years Ago
by igotdreams
… back feature. Basically I knew that you can send a
text
message
to your phone through email. So I said to myself…, "self, why not send yourself the
text
message
through a web form through some type of sendmail script… instantly. The user fills out the form and then a
text
message
is sent to the web site owners phone alerting them…
Re: Send Text Message with PHP
Programming
Web Development
14 Years Ago
by chrishea
… so the chances of it being delivered as a
text
message
is probably better than for a normal email (close… large number or do you mean each
message
will be large? A
text
message
should preferably fit into one physical SMS…
message
of 160 char. It is a "short
message
service"…
Re: Send a text message to your phone from your site!
Programming
Web Development
18 Years Ago
by ckarnuth
… created, entering the phone number that i wish for the
text
message
to go to and changing email addresses, however when I… open it opens in Dreamweaver and does not send the
message
. Can you please help ? I can attach the code back…
Re: Send a text message to your phone from your site!
Programming
Web Development
18 Years Ago
by cfmatt
… created, entering the phone number that i wish for the
text
message
to go to and changing email addresses, however when I… open it opens in Dreamweaver and does not send the
message
. Can you please help ? I can attach the code back…
Re: Send a text message to your phone from your site!
Programming
Web Development
20 Years Ago
by mohachenawi
Is there anyway that we can send messages to somebody else using this code. FOr example using my phone number in this code but to send the
text
message
to somebody else phone number.
Re: Send a text message to your phone from your site!
Programming
Web Development
20 Years Ago
by 2ndPlatform
I've also modified the code from my cell phone provider's website. They usually have the form right on there to send a
text
message
... grab the code from there and use your cell phone provider's already-in-place processing.
Re: Send a text message to your phone from your site!
Programming
Web Development
20 Years Ago
by igotdreams
… my phone number in this code but to send the
text
message
to somebody else phone number.[/QUOTE] Of coarse you can…
Re: Send a text message to your phone from your site!
Programming
Web Development
17 Years Ago
by ZenMartian
… usually have the form right on there to send a
text
message
... grab the code from there and use your cell phone…
Send Text Message with PHP
Programming
Web Development
14 Years Ago
by jonow
I am trying to set up a
text
message
newsletter on my website. The basics of it…and I can go in and send out a
message
to a list of the numbers. I want to…listed? I plan to send out more than 1000
text
messages a month. So bassicaly I need a …method of sending out large
text
messages from a server that I can integrate into …
Send Text Message with PHP without Provider
Programming
Web Development
14 Years Ago
by jonow
…;http://venture-ware.com/kevin/?p=106"]Sending a
Text
Message
(SMS) with PHP [/URL] and more info: [URL="http…://www.stemkoski.com/sending-
text
-messages-using-php-for-free/"]How to Send Free…
Text
Messages Using PHP[/URL]) but the person has to give …
Marquee or Scrolling Text message in Statusbar using VB6
Programming
Software Development
17 Years Ago
by locsin
Greetings! Anybody know how to insert marquee or scrolling
text
message
in statusbar panels using Visual Basic 6. I want to put scrolling
message
in my status bar anybody could help me plz. Thank you in advance.
How to display my text message on the selected product using view.phtml?
Programming
Software Development
6 Years Ago
by aveeva7
…/theme/template/catalog/product/view.phtml how to display my
text
message
on my selected products, workout : <?php $productId = '42150'; $product…
Re: How to send text message to mobile from website.
Hardware and Software
Hardware
Mobile and Wearables
11 Years Ago
by sebastianedu
You can register some website which provide the facility of mail marketing , you can send your
text
message
by these site .
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC