Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by touqir

  1. touqir

    sendusing configuration value is invalid

    Hi All! I want to send email by using the following routine but I'm receiving an error message "sendusing configuration value is invalid". Can anybody help me out Dim ObjMessage SmtpMail.SmtpServer = "smtp.googlemail.com" Set ObjMessage = CreateObject("CDO.Message") ObjMessage.Subject =...
  2. touqir

    Sending emails from Accsess

    Thnx. remou for guidance but sorry I'm can't follow this. Where I have to use .HTMLBody and HTML Encoding. Would you please guide me by setting it in my code. Thnx. one again
  3. touqir

    Sending emails from Accsess

    Hi Remou! Thank you very for you Kind guidance. It's great. It's working perfectly. I also need a litte more help in this regard. I want to change the colour of "WARNING! " message in the above body text. Is it possible. Thnx. once again for your help.
  4. touqir

    Sending emails from Accsess

    Hi. Everybody! Following is a routine to send the emails to email address of a table. Private Sub Activity_Dates_Click() On Error GoTo Err_Activity_Dates_Click 'Declaration of Variables Dim Email As String Dim Email1 As String Dim cc As String Dim origin As String Dim...
  5. touqir

    Sending emails from Accsess

    Thnx. Everybody! Now my routine is as follows Private Sub Activity_Dates_Click() On Error GoTo Err_Activity_Dates_Click 'Declaration of Variables Dim Email As String Dim Email1 As String Dim cc As String Dim origin As String Dim body As String Dim strSQL As String...
  6. touqir

    Sending emails from Accsess

    Hi Mauricionava, following is the body matter. Hope now ur problem soloved. body = "Dear" & Chr(32) & rec![Name] & Chr(44) body = body & Chr(10) body = body & "This is to bring into your notice that below listed PurchaseOrder(s) is (are) still open for sometime now:" body =...
  7. touqir

    Sending emails from Accsess

    Great PHV! Thank you for your kind guidance. It works. Well done. Another thing is that before sending each email, a message comes to confirm that some software is trying to send an email through your outlook. How can this message deactive? Once again many Thanks. Mauricionava, you are right...
  8. touqir

    Sending emails from Accsess

    Dear Remou! thnx. for ur reply. I am also using the same field name as they are in my database but still having the same error. I changed it as follows; Private Sub Command202_Click() On Error GoTo Err_Command202_Click 'Declaration of Variables Dim email As String Dim cc As String...
  9. touqir

    Sending emails from Accsess

    Hi All! I want to send email using the email address from a access table. I want that all fields againts that email address should be in email body. I tried to do that but the error coming "Can't find the field '|' reffered to in your experession" I using the following routine...

Part and Inventory Search

Back
Top