I
ian lewis
I have an email script in VB but want it to just email the contents of
cell a2 and l2. Can anyone help? My current code is
Sub Send_Range()
' Select the range of cells on the active worksheet.
ActiveSheet.Range("L2").Select
' Show the envelope on the ActiveWorkbook.
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = "Please can you add the following to xxxxxxxxxxxx"
& vbCrLf & vbCrLf _
& "xxxxxxxxxxx- work stage " &
Worksheets("PM6").Range("l3").Value
.Item.To = "(e-mail address removed)"
.Item.cc = "(e-mail address removed)"
.Item.Subject = "Additional xxxxxxxxxxxx- work stage " &
Worksheets("PM6").Range("l3").Value
' .Item.Send
MsgBox "Please check that that contents of the subject box and
introduction are correct before pressing SEND.", vbOKOnly +
vbInformation
End With
End Sub
*** Sent via Developersdex http://www.developersdex.com ***
cell a2 and l2. Can anyone help? My current code is
Sub Send_Range()
' Select the range of cells on the active worksheet.
ActiveSheet.Range("L2").Select
' Show the envelope on the ActiveWorkbook.
ActiveWorkbook.EnvelopeVisible = True
With ActiveSheet.MailEnvelope
.Introduction = "Please can you add the following to xxxxxxxxxxxx"
& vbCrLf & vbCrLf _
& "xxxxxxxxxxx- work stage " &
Worksheets("PM6").Range("l3").Value
.Item.To = "(e-mail address removed)"
.Item.cc = "(e-mail address removed)"
.Item.Subject = "Additional xxxxxxxxxxxx- work stage " &
Worksheets("PM6").Range("l3").Value
' .Item.Send
MsgBox "Please check that that contents of the subject box and
introduction are correct before pressing SEND.", vbOKOnly +
vbInformation
End With
End Sub
*** Sent via Developersdex http://www.developersdex.com ***