Link to home
Start Free TrialLog in
Avatar of Jaziar
Jaziar

asked on

memo.Body = NewLine?

I am trying to create a message in my body of my email

        line1  = "Job Number: " & OrderNo
      line2 = "Requester Name: " & sendto
      line3 = "Your job has been completed by the model shop."
      line4 = "If you have any questions please contact us"
      
      memo2.Form = "memo"
      memo2.Subject = "Your Model Shop request has been completed."
      memo2.Body = line1 + line2 + line3 + line4
      memo2.SendTo = sendto
      Call memo2.Send(False)

I have no idea how to put in newlines
ASKER CERTIFIED SOLUTION
Avatar of Bill-Hanson
Bill-Hanson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial