Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to send a text message...
Collapse
X
-
How to send a text message...
...anyone know if we can send a text message to a phone when certain conditions are met through NT. This may be more of a C# question however I used to be a Java guy so I am not familiar with the nuances of C# and if there is a class available to do something like this. Thanks!Tags: None
-
Actually I think I found my solution, I am still reading through the info and setting it up but it's as simple as emailing your cell. For instance if you have verizon you send an email to ##########@vtext.com and that's it!Originally posted by NinjaTrader_Ray View PostI am unaware of any .NET class specific to sending text messages.
Comment
-
It's as simple as the following however for some reason System.Web.Mail is not available....hmmmmm....more research as I know very little about C# (is pretty similar to Java though).
using System.Web.Mail;
...
MailMessage mail = new MailMessage();
mail.To = "[email protected]";
mail.From = "Your Automated Trader";
mail.Subject = "";
mail.Body = "Some message!";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mail);
----EDIT--- The above works for .NET framework 1.1 the following works for 2.0 and up... (notice the change in the using statement too)
using System.Net.Mail;
MailMessage mail = new MailMessage();
mail.To.Add("[email protected]");
mail.From = new MailAddress("Your Automated Trader");
mail.Subject = "";
mail.Body = "blah!";
SmtpClient smtp = new SmtpClient("127.0.0.1");
smtp.Send(mail);
Last edited by fxRichard; 06-10-2008, 03:16 PM.
Comment
-
Ok this works...
Okay this is what ended up working for me using GMail...
using System.Net;
using System.Net.Mail;
MailMessage mail = new MailMessage();
mail.To.Add("[email protected]");
mail.From = new MailAddress("your return mail address");
mail.Subject = "";
mail.Body = "some message here";
SmtpClient smtp = new SmtpClient("smtp.gmail.com",587);
smtp.EnableSsl = true;
smtp.Credentials = new NetworkCredential("username","password");
smtp.Send(mail);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment