Sending emails from within Excel ??

  • Thread starter Thread starter boombangabang
  • Start date Start date
B

boombangabang

I have a worksheet with names and address's of customers, also with
there email address's.

I want to send (via a button on a worksheet) an email to every
customer listed.

Any advice plz
 
Hi Strange Name

Do you use Outlook or Outlook express
Do you want to send the same mail to all people or do you want to personalize the mail
 
Do you use Outlook or Outlook express

No fear.
Do you want to send the same mail to all people or do you want to personalize the mail

Personalized with name.

I was looking for something similar to the php code I normally use.

<?php
// Your email address
$email = "(e-mail address removed)";
// The subject
$subject = "Enter your subject here";
// The message
$message = "Enter your message here";
mail($email, $subject, $message, "From: $email");
echo "The email has been sent.";
?>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top