VoiceGuide IVR Software Main Page
Jump to content

Emailque.mdb Database In Version 7?

Recommended Posts

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

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×