Results 1 to 9 of 9

Thread: Problem sending Emails *resolved*

Hybrid View

  1. #1

    Thread Starter
    Wall Poster TysonLPrice's Avatar
    Join Date
    Sep 2002
    Location
    Columbus, Ohio
    Posts
    3,969

    Re: Problem sending Emails

    Quote Originally Posted by Rishi1022
    Did it help in avoiding the security warning messages?
    Been out of town. Yes it does not use Outlook.

  2. #2
    New Member
    Join Date
    Nov 2004
    Posts
    8

    Re: Problem sending Emails *resolved*

    So using this VBsendmail.dll, shall we read and send e-mails from outlook without getting the warning messages?

  3. #3

    Thread Starter
    Wall Poster TysonLPrice's Avatar
    Join Date
    Sep 2002
    Location
    Columbus, Ohio
    Posts
    3,969

    Re: Problem sending Emails *resolved*

    Quote Originally Posted by Rishi1022
    So using this VBsendmail.dll, shall we read and send e-mails from outlook without getting the warning messages?
    I guess I misunderstood your question. Outlook is not being used so it is not generating any warning messages. After the DLL is added the coding is just:

    VB Code:
    1. Set poSendMail = New clsSendMail
    2. With poSendMail
    3.         .SMTPHost = "Mail.yourdomain.com"
    4.         .From = "[email protected]"
    5.         .FromDisplayName = "The Widget Corporation"
    6.         .AsHTML = True
    7.         .Message = sBody
    8.         .Recipient = sTo
    9.         .Subject = "The WidgetCorporation - Patient Follow-ups for: " & Format(dCurrentDate, "MM/DD/YYYY")
    10.         .Send
    11.     End With

    sBody and sTo are just strings I populated.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width