Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Bigredno8
 
Posts: n/a
Default Sending multiple EMails thru excel?


I have a spreadsheet for our baseball league with parents email
address,is there a way to select all the email address cells and send
one mass email to all addresses,I can only select one at a time,

Thanks
Steve


--
Bigredno8
------------------------------------------------------------------------
Bigredno8's Profile: http://www.excelforum.com/member.php...o&userid=17162
View this thread: http://www.excelforum.com/showthread...hreadid=479664

  #2   Report Post  
Jim May
 
Posts: n/a
Default Sending multiple EMails thru excel?

Go he
http://www.rondebruin.nl/mail/add-in.htm
HTH


"Bigredno8" wrote
in message ...

I have a spreadsheet for our baseball league with parents email
address,is there a way to select all the email address cells and send
one mass email to all addresses,I can only select one at a time,

Thanks
Steve


--
Bigredno8
------------------------------------------------------------------------
Bigredno8's Profile:
http://www.excelforum.com/member.php...o&userid=17162
View this thread: http://www.excelforum.com/showthread...hreadid=479664



  #3   Report Post  
topola
 
Posts: n/a
Default Sending multiple EMails thru excel?

I think there is hope for your baseball league. Try using this macro
procedu

Sub Mail_workbook()
Dim Uzytkownik, Adresy As String
Dim i As Integer
Uzytkownik = Application.UserName
Range("a1", ActiveCell.SpecialCells(xlLastCell)).Select
i = 0

For Each cell In Selection
If InStr(cell, "@") 0 Then
ActiveWorkbook.SendMail cell.Text, "Topic Title"
Debug.Print cell.Text
If i = 0 Then
Adresy = cell.Text
Else
Adresy = Adresy & ", " & cell.Text
End If
i = i + 1
End If
Next

' ActiveWorkbook.SendMail Adresy, "Topic Title"
' This command in case you'd like to sent one group e-mail
' but breaks when there is wrong address within

MsgBox Uzytkownik & Chr(10) & Chr(10) & _
"Number of sent messages: " & i & Chr(10) & Chr(10) & _
"Addresses a " & Adresy
End Sub
---
Tomek Polak, http://vba.blog.onet.pl

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I embed or link multiple .pdf files into or to an excel file? GrubbyG Excel Discussion (Misc queries) 1 October 3rd 05 08:40 PM
see multiple tabs at once in excel Jason Excel Discussion (Misc queries) 2 September 26th 05 06:32 PM
Excel should let me format worksheet tabs in multiple rows. Fawzi_Masri Excel Worksheet Functions 1 September 19th 05 06:23 PM
Multiple Excel on Task bar Craig Excel Discussion (Misc queries) 3 September 9th 05 07:11 PM
Excel gets subtotals out of order using multiple sorts and subtot. jeffl Excel Discussion (Misc queries) 1 March 29th 05 01:35 AM


All times are GMT +1. The time now is 11:26 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"