Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sending emails from QTP
#1
Solved: 11 Years, 3 Months, 4 Weeks ago
Hi,

I am trying to send an email from QTP. I called the following function and it displayed an error "The transport failed to connect to the server" when oMessage.Send is called.

Can anyone help me in finding the solution for this

SendCDOMessage "mymail@mail.com", "mymail@mail.com","Hi","Hi this a mail from QTP"


Code:
'''=================================================================
' Function SendCDOMessage
'''=================================================================
' Description:
' Sends an email message using Microsoft's CDO.Message object
' Parameters:
' Return value: True if succeeded, False otherwise

Public Function SendCDOMessage(EmailTo, EmailFrom, EmailSubject, MessageBody)

    Dim oMessage
    Set oMessage = CreateObject("CDO.Message")
'     Set message details
    oMessage.Subject = EmailSubject
    oMessage.From = EmailFrom
    oMessage.To = EmailTo
    oMessage.AutoGenerateTextBody = True
    oMessage.HTMLBody = MessageBody
'     Set configuration
    oMessage.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") =  "smtp.gmail.com"
    oMessage.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") =2
    oMessage.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=465
    oMessage.Configuration.Fields.Update
'     Send the message
    oMessage.Send
    MsgBox Err.Number
    If Err.Number <> 0 Then
        SendCDOMessage = False
    Else
        SendCDOMessage = True
    End If
    Set oMessage = Nothing

End Function
Reply


Messages In This Thread
Sending emails from QTP - by AkhilaV - 06-19-2012, 07:13 PM
RE: Sending emails from QTP - by sshukla12 - 06-20-2012, 10:27 AM
RE: Sending emails from QTP - by AkhilaV - 06-20-2012, 07:21 PM
RE: Sending emails from QTP - by sshukla12 - 06-21-2012, 10:22 AM
RE: Sending emails from QTP - by ssvali - 06-21-2012, 10:53 AM
RE: Sending emails from QTP - by QTPScript - 08-29-2012, 10:09 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Sending json file request and validating response in soap UI tool using Groovy script smiley 0 3,884 07-19-2017, 04:58 PM
Last Post: smiley
  How to keep recipients in bcc while sending e-mail using QCUtil.QCConnection.SenMail Surya 0 1,988 01-12-2013, 07:05 PM
Last Post: Surya
  Subject line of QC emails beejfred 0 1,949 05-09-2012, 10:32 PM
Last Post: beejfred
  Error while sending email via outlook reejais 2 5,152 02-09-2011, 11:48 AM
Last Post: ksrikanth2k9
  Regarding Email sending from one user to another -Important urgent siri 3 2,643 10-15-2009, 04:38 PM
Last Post: Saket

Forum Jump:


Users browsing this thread: 2 Guest(s)