Write code for the Application_ItemSend event handler, e.g.:

Private Sub Application_ItemSend _
(ByVal Item As Object, Cancel As Boolean)
intRes = MsgBox("Do you want to send this message?", _
vbQuestion + vbYesNo, "Confirm")
If intRes = vbNo Then
Cancel = True
End If
End Sub

See http://outlookcode.com/article.aspx?id=49 if you're just getting started with Outlook VBA.
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54

"Steve Stad" <SteveStad@discussions.microsoft.com> wrote in message news:50699665-21C6-414B-8C4D-6BC14DDE034D@microsoft.com...
>I noticed by accident that hitting 'Control key' and 'Enter' key together
> will send an email when you are in the email. Is there a way to deactivate
> or disable this hotkey option or better yet have a pop up confirmation asking
> 'Are you sure you want to send this email? - Yes/No
>
> Thanks
23 AprSending Options - "Control Enter".Steve Stad
23 Apr\ Re: Sending Options - "Control Enter".Sue Mosher [MVP-Outlook]
All times are in (US) Eastern Daylight Time (GMT -4:00)