Results 1 to 3 of 3

Thread: Send emails from Excel List

  1. #1
    Join Date
    Jan 2004
    Posts
    21

    Send emails from Excel List

    I have a list of about 100 people to send an email to. I need to send an email to each individual in excel with an attachment and a personalised message. I don't want to type it because it will take too long. Any templates.

  2. #2
    Join Date
    Aug 2011
    Posts
    566

    Re: Send emails from Excel List

    Use MS-Word for a mail merge to email and Excel as the data source for the email addresses. This will merge everything into Outlook and be ready to send. Outlook may challenge (ask for confirmation) you to send in bulk assuming it's SPAM. Just follow the prompts.

  3. #3
    Join Date
    Jul 2011
    Posts
    623

    Re: Send emails from Excel List

    There is abundant information on how to send email from Excel.I suggest you also use Clickyes (FREE), which allows you to create emails using simple code shown here.
    Code:
     
    As Object Dim myOutlook 
     As Object Dim myMailItem 
     variabileEmailDelDestinatario = "test@test.ext" 
     September otlApp = CreateObject ("Outlook.Application") 
     September otlNewMail otlApp.CreateItem = (olMailItem) 
     ActiveWorkbook.Path = fName & "\" & ActiveWorkbook.Name 
     With otlNewMail 
     . To = variabileEmailDelDestinatario 
     . Subject = "Message Subject" 
     . Body = "TEXT MESSAGE" 
     . Display 
     . Send 
     End With

Similar Threads

  1. Can't send emails on Nokia C3
    By Smita.bendal in forum Portable Devices
    Replies: 6
    Last Post: 26-08-2010, 10:21 AM
  2. Replies: 2
    Last Post: 26-06-2010, 12:40 AM
  3. E72 can't send emails
    By TakshakH in forum Portable Devices
    Replies: 4
    Last Post: 19-04-2010, 10:56 AM
  4. HELP!! Can't send emails with attachments
    By VauGhna in forum Windows Vista Mail
    Replies: 1
    Last Post: 12-04-2009, 05:52 AM
  5. Sent emails do not appear in the Send folder
    By Salome in forum Technology & Internet
    Replies: 2
    Last Post: 26-03-2009, 11:07 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,715,500,777.90422 seconds with 17 queries