![]() |
| |||||||
| Home | Forums | Rules | All Albums | Blogs | Donate | Subscriptions | Register | Mark Forums Read | vBExperience |
| Software & OSs Operating Systems, Anti-Virus, Utilities and Programs. |
![]() |
| | LinkBack | Thread Tools |
| | #1 | ||||||||||||||
| Lvl 1 College Student
| Is there a way to manage and maintain a database via Microsoft Access and have stuff like Name, Number, and email address, and then use said database to produce AND mail (via smtp email server) an email to everyone in that database? I've done some googling and I haven't come up with anything useful. My boss wants to use some e-company that charges $15/mo for this and I think its bunk and I can totally do it via access + outlook/thunderbird Thanks :) | ||||||||||||||
| | | ||||||||||||||
| | #2 | ||||||||||||||
| Jumpmaster
Join Date: Nov 2006 Location: Lansing, KS
Posts: 609
| You could do it in linux with an SQL database and the mail command. Do some googling on Linux + mail. AMD Athlon 64 X2 4400+ Toledo @2211.3 MHz MS-7125 Rev 1.0 nForce4 K8N-Neo4 Plat Phoenix 6.00 PG 05/22/2006 BIOS 2 x OCZ4001024PF 1 GB PC3200/400 3-3-3-8 2T nVidia XFX GF8800GT 512 DX9c Samsung SyncMaster 930B 1 x WD800JB / 2 x WD2000JD HP DVD640 OCZ 520ADJ SLI PSU | ||||||||||||||
| | | ||||||||||||||
| | #3 | ||||||||||||||
| Helper Person In General
Join Date: Jan 2007 Location: Cleveland, Ohio
Posts: 1,290
| Actually $15 a month isn't bad depending on the service. There are also some reasonably priced software packages out there. However, for the do it yourself types there are a few ways to go about it. I messed with some scripts awhile back to do it. The basic script can be written in Notepad and saved as a .vbs file extension. Something like this: Code: Dim oOApp As Outlook.Application
Dim oOMail As Outlook.MailItem
Set oOApp = CreateObject("Outlook.Application")
Set oOMail = oOApp.CreateItem(olMailItem)
With oOMail
.To = "name@domain.com"
.Subject = "Daily Report"
.Body = "email message"
.Attachments.Add "File Path Goes Here For Attachment", olByValue, 1
.Send
End With
Send E-mail Using Microsoft Outlook Automation Look for simple code samples to automate Outlook. That is the starting point. The trick in your case is to populate the .To line with the recipients. I would start with the basic code sample above and work from there. I used it to send the same file daily by saving the program to my desktop and then running it as a scheduled task daily. I left the attached document with the same name but changed it daily. A Google of "Send Mail .VBS Scripts will yield more code samples plus the one provided can be modified and expanded upon. I think I have more of this stuff at home (at work now). Ron Last edited by Reloadron; June 20th, 2007 at 05:25. | ||||||||||||||
| | | ||||||||||||||
| | #4 | ||||||||||||||
| Lvl 1 College Student
| Well if there's lines of code to be written I think I'll just stick with the online service. I need my boss to be able to do it too, and he's.... not too savvy when it comes to computers. :) Thanks though. I'll dabble a little in this if I have some free time. :) Maybe I can get it to work for him easily | ||||||||||||||
| | | ||||||||||||||
| | #5 | ||||||||||||||
| Functional Alcoholic
| Exactly what I was going to suggest. | ||||||||||||||
| | | ||||||||||||||
| | #6 | |||||||||||||||
| Helper Person In General
Join Date: Jan 2007 Location: Cleveland, Ohio
Posts: 1,290
| Quote:
I would experiment a little with things as time allows. Ron | |||||||||||||||
| | | |||||||||||||||
| | #7 | |||||||||||||||
| Helper Person In General
Join Date: Jan 2007 Location: Cleveland, Ohio
Posts: 1,290
| Quote:
Ron | |||||||||||||||
| | | |||||||||||||||
| | #8 | ||||||||||||||
| Lvl 1 College Student
| Well I told him about the code and he said he already had paid for a year's subscription to the service. Email Marketing Solutions from Constant Contact is the website btw. So it looks like I'm gonna git busy with them over the next couple days | ||||||||||||||
| | | ||||||||||||||
| | #9 | ||||||||||||||
| Helper Person In General
Join Date: Jan 2007 Location: Cleveland, Ohio
Posts: 1,290
| Cool, as long as it works for the boss. ![]() The merit of using a site like that is that it can also function as a business campaign site. Mass mailings to customers can have several purposes, like introducing new products and such. Really depends on the business and what you want things to do for the business. Hell, you are looking at $180 a year which is cheap at the price and they offer a 60 day free trial. Ron | ||||||||||||||
| | | ||||||||||||||
| | #10 | ||||||||||||||
| Jumpmaster
Join Date: Nov 2006 Location: Lansing, KS
Posts: 609
| err...yes.... ![]() Linux has a great many applications written for it and *nix os' that do exactly, or close to what he wants done. Even my linux-depleted cranium wrote a script that mailed changes to the f@h log to my regular email account in it. If I can do it, almost anyone can. AMD Athlon 64 X2 4400+ Toledo @2211.3 MHz MS-7125 Rev 1.0 nForce4 K8N-Neo4 Plat Phoenix 6.00 PG 05/22/2006 BIOS 2 x OCZ4001024PF 1 GB PC3200/400 3-3-3-8 2T nVidia XFX GF8800GT 512 DX9c Samsung SyncMaster 930B 1 x WD800JB / 2 x WD2000JD HP DVD640 OCZ 520ADJ SLI PSU | ||||||||||||||
| | | ||||||||||||||
![]() |
|
| Thread Tools | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Access Point Recommendation? | b0nk3r | Internet/Networking | 6 | May 19th, 2008 13:41 |
| More Thunderbird changes: Core coders depart | Capper | Software & OSs | 0 | October 8th, 2007 17:11 |
| Uninstall Thunderbird | Carl Martin | Software & OSs | 9 | September 10th, 2007 06:24 |
| NASCAR Racing 2003 Season | Jafo | Gaming | 37 | May 16th, 2007 07:50 |
| Outlook crashes | Carl Martin | Software & OSs | 11 | January 18th, 2007 15:11 |