Help with some code

markaxtell

New Member
Joined
Jan 6, 2012
Messages
33
Hi all,

Need some help with this code, few problems i did have are that it use to get to the point where it asked for permission to send, you would click yes and it would look like it had sent but then wouldnt have sent (nothing in sent items) new problem is that it does not seem to work in excel 2007 but i need it to work in 2007 and 2003. the code is



Sub Mail_Selection_Range_Outlook_Body()
Sheet1.Unprotect ("Sunshine1")
' Don't forget to copy the function RangetoHTML in the module.
' Working in Office 2000-2010
Dim rng As Range
Dim OutApp As Object
Dim OutMail As Object

On Error Resume Next
'Only the visible cells in the selection
Set rng = Sheets("Summary").Range("A1:K26").SpecialCells(xlCellTypeVisible)
'You can also use a range if you want
'Set rng = Sheets("YourSheet").Range("D4:D12").SpecialCells(xlCellTypeVisible)
On Error GoTo 0

If rng Is Nothing Then
MsgBox "The selection is not a range or the sheet is protected" & _
vbNewLine & "please correct and try again.", vbOKOnly
Exit Sub
End If

With Application
.EnableEvents = False
.ScreenUpdating = False
End With

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

On Error Resume Next
With OutMail
.To = "Bradbury, Alison (MAB); O'Neill, Amy (MAB); Walker, Danny (MAB); Desave, Helena (MAB); Light, Jez (MAB); Mears, Joanne (MAB); Franklin, Julia (MAB); Chalmers, Katrina (MAB); O'Sullivan, Katie (MAB); Wilkinson, Lee (MAB); Campbell (nee Wooller), Louise (MAB); Jobson, Louise (MAB); Axtell, Mark (MAB); Baldwin, Nicola (MAB); Lay, Nicola (MAB); Lee, Rachael (MAB); Meddings, Sian (MAB); Witham, Carly (MAB); Spong, Billy (MAB); Stuttard, Helen (MAB); Arnold, Stephanie (MAB); Bull, Stephanie (MAB); Bayley, Susan (MAB); Marriott, James (MAB)"
.CC = "Jones, Emma (MAB); Matharu, Harmeet (MAB); Price, Barbara (MAB); Riordan, Edward (MAB); Skidmore, Sarah (MAB); Statham, Michele (MAB); Uppal, Bhupinder (MAB)"
.BCC = ""
.Subject = (Value & "Recruitment Event Results - ") & MyName()
.HTMLBody = RangetoHTML(rng)
.Attachments.Add ActiveWorkbook.FullName
.Send 'or use .Display
End With
On Error GoTo 0

With Application
.EnableEvents = True
.ScreenUpdating = True
End With

Set OutMail = Nothing
Set OutApp = Nothing
Sheet1.Protect ("Sunshine1")
End Sub
Function RangetoHTML(rng As Range)
' Changed by Ron de Bruin 28-Oct-2006
' Working in Office 2000-2010
Dim fso As Object
Dim ts As Object
Dim TempFile As String
Dim TempWB As Workbook

TempFile = Environ$("temp") & "/" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"

'Copy the range and create a new workbook to past the data in
rng.Copy
Set TempWB = Workbooks.Add(1)
With TempWB.Sheets(1)
.Cells(1).PasteSpecial Paste:=8
.Cells(1).PasteSpecial xlPasteValues, , False, False
.Cells(1).PasteSpecial xlPasteFormats, , False, False
.Cells(1).Select
Application.CutCopyMode = False
On Error Resume Next
.DrawingObjects.Visible = True
.DrawingObjects.Delete
On Error GoTo 0
End With

'Publish the sheet to a htm file
With TempWB.PublishObjects.Add( _
SourceType:=xlSourceRange, _
Filename:=TempFile, _
Sheet:=TempWB.Sheets(1).Name, _
Source:=TempWB.Sheets(1).UsedRange.Address, _
HtmlType:=xlHtmlStatic)
.Publish (True)
End With

'Read all data from the htm file into RangetoHTML
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
RangetoHTML = ts.ReadAll
ts.Close
RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
"align=left x:publishsource=")

'Close TempWB
TempWB.Close savechanges:=False

'Delete the htm file we used in this function
Kill TempFile

Set ts = Nothing
Set fso = Nothing
Set TempWB = Nothing
End Function

Function MyName() As String

MyName = ThisWorkbook.Name

End Function

Function MyFullName() As String

MyFullName = ThisWorkbook.FullName

End Function


Function SheetName(rAnyCell)

Application.Volatile

SheetName = rAnyCell.Parent.Name
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Welcome to the board. Please use [code][/code] tags when posting VBA code.

Kindly explain what the code is trying to do, and on what line it is failing. "does not seem to work" is not an effective problem description.
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,601
Members
449,109
Latest member
Sebas8956

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