5/18/2006 12:30 PM | |
Posts: 3149 Rating: (171)
|
Hi, you could trigger an email via SMS with the PCS7-Alarmserver.... http://www.industry.siemens.de/IT4Industry/EN/SOLUTION_SERVICES/SIMATIC_ADDONS/DETAILS_TOOL/ALARM.HTM https://www.automation.siemens.com/hmi/html_76/products/software/wincc_addons/wcc_addon_alarm_management.htm?HTTPS=REDIR nemo |
Last edited by: Nemo at: 5/18/2006 12:32 PM |
|
5/23/2006 9:21 AM | |
Joined: 9/27/2005 Last visit: 11/27/2007 Posts: 1398 Rating: (151)
|
Most mobile network providers (in the UK at least) offer a service to convert an e-mail to SMS. Or you could use a third-party service provider http://www.cellular.co.za/email_to_sms_gateways.htm [:D] Regarding the VBS side, below is an example script to get you started, if you are interested. [code] Dim appOutlook 'As OUTLOOK.APPLICATION Dim mlNewMail 'As MailItem Dim objEntry Dim Text Const addressee = "Email-Address of the addressee" ' Text to be sent Text = "This is an test mail" Set appOutlook = CreateObject("OUTLOOK.APPLICATION") 'Generating and sending an e-mail: Set mlNewMail = appOutlook.CreateItem(0) mlNewMail.Display mlNewMail.To = addressee mlNewMail.Subject = "Message from WinCC" mlNewMail.Body = Text mlNewMail.Send [/code] |
5/23/2006 10:31 AM | |
Joined: 1/11/2006 Last visit: 11/17/2021 Posts: 58 Rating: (2) |
Thank you Salma for your help. I'm going to follow your steps and i will tell you if i have success. Thanks again. |
1/21/2009 8:32 AM | |
Joined: 1/17/2006 Last visit: 7/19/2024 Posts: 800 Rating: (63) |
Hi Txaby, Did you had succes?? thanks in advance, Jaap |
Follow us on