VBA Code for to send email from outlook based on Cell Value

Likith

New Member
Joined
Dec 26, 2018
Messages
9
Hello All,

Can anyone help me in getting the code for below need

I would like to send an email based on cell value , for example A2 cell consist of email address and in A3 I have conditions like "Yes" or "No" , if A3 consist of "Yes" excel should trigger a email to email address in A2 by copying the value in A4 as a body of Email . This should continue for next rows .. ...

I have tried couple ways but nothing worked .

Any help here much appreciated!!

Thanks you so much in Advance

Regards ,
Likith
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hi,

Here's some basic code with no error checking based on the data going down a single column as specified.......which is unusual.

It is assumed the mail data is always in the 3 rows as specified starting at A2
It starts checks for Yes or No in A3 to determine if an email is required then steps 3 rows to where the next Yes/No is expected until the last row in column A. Copying the data from the row above and below it for the mail address and content.


Code:
Sub Mail_it()

Dim OutApp As Object
Dim OutMail As Object

LastRow = Range("A" & Rows.Count).End(xlUp).Row

'Look in first row where Yes/No would reside every 3 rows
  For i = 3 To LastRow Step 3

   If UCase(Cells(i, 1).Value) = "YES" Then

'Address is offset 1 row above, Mail Body 1 row below
emailTo = Cells(i - 1, 1).Value
    emailBody = Cells(i + 1, 1).Value


Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

  With OutMail
.To = emailTo
.CC = ""
.BCC = ""
.Subject = "This is the Subject line"
.Body = emailBody
'.Send
.Display
End With

Set OutMail = Nothing
Set OutApp = Nothing
End If

Next
End Sub
 
Upvote 0
Thank you So much Daverunt for taking time and doing this , I appreciate the help .

you are right I messed up with my request let me re-write my request

I would like to send an email based on cell value , for example A2 cell consist of email address and in B2 I have conditions like "Yes" or "No" , if B2 consist of "Yes" excel should trigger a email to email address in A2 by copying the value in C2 as a body of Email . This should continue for next rows .. ...

Could you please help here !

Regards ,
Likith
 
Upvote 0
Hi,

Here's some basic code with no error checking based on the data going down a single column as specified.......which is unusual.

It is assumed the mail data is always in the 3 rows as specified starting at A2
It starts checks for Yes or No in A3 to determine if an email is required then steps 3 rows to where the next Yes/No is expected until the last row in column A. Copying the data from the row above and below it for the mail address and content.


Code:
Sub Mail_it()

Dim OutApp As Object
Dim OutMail As Object

LastRow = Range("A" & Rows.Count).End(xlUp).Row

'Look in first row where Yes/No would reside every 3 rows
  For i = 3 To LastRow Step 3

   If UCase(Cells(i, 1).Value) = "YES" Then

'Address is offset 1 row above, Mail Body 1 row below
emailTo = Cells(i - 1, 1).Value
    emailBody = Cells(i + 1, 1).Value


Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

  With OutMail
.To = emailTo
.CC = ""
.BCC = ""
.Subject = "This is the Subject line"
.Body = emailBody
'.Send
.Display
End With

Set OutMail = Nothing
Set OutApp = Nothing
End If

Next
End Sub






Thank you So much Daverunt for taking time and doing this , I appreciate the help .

you are right I messed up with my request let me re-write my request

I would like to send an email based on cell value , for example A2 cell consist of email address and in B2 I have conditions like "Yes" or "No" , if B2 consist of "Yes" excel should trigger a email to email address in A2 by copying the value in C2 as a body of Email . This should continue for next rows .. ...

Could you please help here !

Regards ,
Likith
 
Upvote 0
No problem. A few changes to rows, column code.

- You might want to add a line of code to change Yes to No in column B so that you don't repeat the emails by accident?
Cells (i, 2) = "No" placed inside the loop - before 'Next' will do that or you may have other ideas. I commented that out.

Code:
Sub Mail_it()

'Look in column B2 onward, where Yes/No would reside
LastRow = Range("B" & Rows.Count).End(xlUp).Row

For i = 2 To LastRow

If UCase(Cells(i, 2).Value) = "YES" Then

'Address is offset 1 column left, Mail Body 1 column right
     emailTo = Cells(i, 2 - 1).Value
    emailBody = Cells(i, 2 + 1).Value

Dim OutApp As Object
Dim OutMail As Object

Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)

  With OutMail
.To = emailTo
.CC = ""
.BCC = ""
.Subject = "This is the Subject line"
.Body = emailBody
'.Send
.Display
End With

Set OutMail = Nothing
Set OutApp = Nothing
End If

'Cells(i, 2).Value = "No"
Next

End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,220,933
Messages
6,156,939
Members
451,386
Latest member
leolagoon94

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top