Exemplo n.º 1
0
 function Send()
 {
     global $gsEmailErrDesc;
     $result = ew_SendEmail($this->Sender, $this->Recipient, $this->Cc, $this->Bcc, $this->Subject, $this->Content, $this->Format, $this->Charset, $this->SmtpSecure, $this->Attachments, $this->EmbeddedImages, $this->Prop);
     $this->SendErrDescription = $gsEmailErrDesc;
     return $result;
 }
Exemplo n.º 2
0
 function Send()
 {
     global $gsEmailErrDesc;
     $result = ew_SendEmail($this->Sender, $this->Recipient, $this->Cc, $this->Bcc, $this->Subject, $this->Content, $this->Format, $this->Charset);
     $this->SendErrDescription = $gsEmailErrDesc;
     return $result;
 }
Exemplo n.º 3
0
 function Send()
 {
     return ew_SendEmail($this->Sender, $this->Recipient, $this->Cc, $this->Bcc, $this->Subject, $this->Content, $this->Format);
 }