Guest ddenara Report post Posted 01/29/2009 02:10 PM I am evaluating version 7 and I was wondering if you can still send emails by inserting directly into emailque.mdb. It appears that this database is missing. Please advise. Share this post Link to post
SupportTeam Report post Posted 01/29/2009 07:41 PM This database is not used in v7. Emails are stored and sent using .NET If you must have the ability for VoiceGuide to also forward emails from your own database (instead of just using VoiceGuide's Send Email module) then please contact sales@voiceguide.com regarding your requirements. Share this post Link to post
Guest ddenara Report post Posted 01/29/2009 07:49 PM We are converting our VBSscripts to C# and previously we would sent emails through the emailque.mdb. Since you are now sending through .Net, is there a way for us to do so that you can refer us to? Share this post Link to post
Guest ddenara Report post Posted 01/29/2009 09:14 PM Nevermind. I used the following to send emails. Thanks for pointing me in the .Net direction. MailMessage message = new MailMessage(txtFrom.Text, txtTo.Text, txtSubject.Text, txtBody.Text); SmtpClient emailClient = new SmtpClient(txtSMTPServer.Text); System.Net.NetworkCredential SMTPUserInfo = new System.Net.NetworkCredential(txtSMTPUser.Text, txtSMTPPass.Text); emailClient.UseDefaultCredentials = false; emailClient.Credentials = SMTPUserInfo; emailClient.Send(message); litStatus.Text = "Message Sent"; Share this post Link to post