Archives

Posts Tagged ‘email’

This is a great blog post regarding how to setup SQL Mail.  Need to keep for reference. SQL SERVER – 2008 – Configure Database Mail – Send Email From SQL Database

Aug 7th, 2014 | Filed under SQL

The Exchange server is primarily responsible for the broadcast of e-mails generated within SyteLine . An Exchange server is a Microsoft messaging system including mail server, email client and groupware applications.  If e-mails are not being generated from SyteLine, for example when a purchase order is printed, then there are certain procedures to follow to […]

Oct 15th, 2011 | Filed under Development

Below is a pretty useful Form Script Function that can be used to send out email.  You can trigger this by any event.  PublicSub SendEmail() Dim EmailBody AsString Dim toAddress AsNew Net.Mail.MailAddress(ThisForm.PrimaryIDOCollection .GetCurrentObjectProperty("your_email_field")) Dim FromAddress AsNew Net.Mail.MailAddress("me@company.com", "Display Name") EmailBody = "Some text:" & ThisForm.PrimaryIDOCollection.GetCurrentObjectProperty("some_property") & vbNewLine _ & "Some more stuff: " & vbNewLine […]

Mar 8th, 2011 | Filed under Development, VB .Net