Directory Mail Merge to Email Messages?
-
I have a spreadsheet that has students’ names and their class schedules. We want to be able to email the class schedule to the students using an email mail merge. I am willing to use Excel/Word or Google Docs/Sheets. I think I have figured out how to use a directory mail merge in Word to print the schedules, but we really need to email the schedules to the students instead of print them. I just learned how to write a very simple script in Excel, so if it involves some kind of scripting, I may be able to make it happen. I made some sample spreadsheets to give you an idea what the originals look like: Schedules: http://tinypic.com/r/33wte1s/8 Email Addresses: http://tinypic.com/r/4rrsc4/8
-
Answer:
I can't give you any technical tips, unfortunately, but I wanted to chime in to recommend you run the final plan by the technology specialist at your school to make sure it complies with FERPA laws. I say this as a fellow educator: it's probably fine but worth checking to be sure!
allison00 at Ask.Metafilter.Com Visit the source
Other answers
What email program are you using?
brainmouse
Outlook 2007
allison00
something something
@something, if I use that method, it will send a separate email for each row in the spreadsheet. I went all rows in the spreadsheet for a particular student to be in one email to that student.
allison00
Concatenate the rows for each student into one row using http://techwelkin.com/ms-excel-how-to-use-line-break-in-formula. Or heck, just use semicolons. You can probably write a script to do it, matching on the student ID.
brainmouse
Mailchimp will do this for you.
Nevin
If you have their email addresses in the Excel spreadsheet, you can probably do this from within Excel. Here's some macro code that sends email: Sub send_email() mail_subject = "Insert Your Subject" ' Working in Office 2000-2010 Dim rng As Range Dim OutApp As Object Dim OutMail As Object Set rng = Nothing On Error Resume Next Set a range of the information you want to print - this is specific to my app Set rng = Sheets("KT Summary").Range("report_rows_cols").SpecialCells(xlCellTypeVisible) On Error GoTo 0 If rng Is Nothing Then MsgBox "The selection is not a range or the sheet is protected" & _ vbNewLine & "please correct and try again.", vbOKOnly Exit Sub End If sendit = 1 ' ended up not using If sendit Then With Application .EnableEvents = False .ScreenUpdating = False End With Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(0) On Error Resume Next With OutMail .To = "[email protected]" .CC = "" .BCC = "" .Subject = mail_subject .HTMLBody = RangetoHTML(rng) .Send End With On Error GoTo 0 With Application .EnableEvents = True .ScreenUpdating = True End With Set OutMail = Nothing Set OutApp = Nothing End If ' sendit End Sub
achrise
@brainmouse, I don't think I know how to concatenate only those rows that match a specific ID number. It might be 3 rows for one student and 5 rows for another student. @Nevin, I think MailChimp might work for us, but we have 2500 students at our school. I would have to pay for it, right? @achrise, I like the idea of your code, but after studying it for a while, I'm not sure I understand where I would change the code to fit my data. So, where do I tell the code that the email addresses are in column D? And how does it know to include all rows that have a matching ID number?
allison00
My code would be included in a loop that goes through your people one-by-one. Looking back I'd probably move some things around (specifically defining the range AFTER the On Error. You'd start your loop after the On Error (after everything is defined), and within the loop you'd step through your people, defining for each the range (which is the message that gets emailed) and the .To address. then end the loop after the End With and before the On Error Goto 0. Taking another step back, you might want to have a separate sheet with a format laid out where you could poke each person's schedule into. Then you could define the range once to be the nice formatted area, do all the Dims and Sets and enter your "people" loop. Then take each person's individual information and poke that into the nice formatted sheet and mail that. repeat until done.
achrise
Related Q & A:
- Does the Yahoo pop-up blocker stop the audio in email messages?Best solution by Yahoo! Answers
- Why are my email messages being blocked?Best solution by Yahoo! Answers
- Why are the times on my email messages incorrect?Best solution by support.microsoft.com
- Why won't my email messages load?Best solution by answers.yahoo.com
- How do I print email messages?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.