I need help.

I have a spreadsheet that has multiple columns, 3 of which contain names, email addresses and a column for "confirmed". for simplicity call them A:C

I am trying to create a macro that will open a userform.
The form has two text boxes like an emial.

1. is labled subject
2. is labled body (side question...how do I allow for the "enter" key to be used in a text box to create more than 1 line?)

There are two cmd buttons
1. Cancel (obvioulsy if the user wants to exit without sending)
2. Send

Once the send button is clicked on......

It will take the values from the two text boxes and use them to send a bulk email to everyone on the list who has an email entered, but doesn't have an "X" in the confirmed column.

This is the code I have for the emial part

VB Code:
  1. Sub Mail_small_Text_Outlook()
  2. 'You must add a reference to the Microsoft outlook Library
  3.     Dim OutApp As Outlook.Application
  4.     Dim OutMail As Outlook.MailItem
  5.     Dim VarBody As String
  6.     Dim VarSubj As String
  7.     VarSubj = "Userform1.txtSubj.text"
  8.     VarBody = "Userform1.txtBody.text"
  9.     Do
  10.     If ActiveCell <> "" And ActiveCell.Offset(0, 1) <> "X" Then
  11.     Set OutApp = CreateObject("Outlook.Application")
  12.     Set OutMail = OutApp.CreateItem(olMailItem)
  13.     strbody = VarBody
  14.  
  15.     With OutMail
  16.         .To = ActiveCell.Value
  17.         .CC = ""
  18.         .BCC = ""
  19.         .Subject = VarSubj
  20.         .Body = VarBody
  21.         .Send   'or use .Display
  22.     End With
  23.  
  24.     Set OutMail = Nothing
  25.     Set OutApp = Nothing
  26.     ActiveCell.Offset(0, 1) = "X"
  27.     Else: ActiveCell.Offset(1, 0).Select
  28.     End If
  29.     Loop Until ActiveCell.Value = "send_email_end"
  30. End Sub

I need big help on the code for the userform.

Thanks so much