Jump to content
Fórum Script Brasil
  • 0

CDOSYS com gmail e asp - From não funciona - APPS


EduardoSys

Question

Gente estou com um problema que não consigo resolver.

Estou usando o cdosys junto com o gmail com a seguinte descrição:

<% 
Set Mens = CreateObject("CDO.Message")
Set Config = CreateObject("CDO.Configuration")
With Config
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com"
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = "xxxxxx@gmail.com"
.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "Cxxxxxx"
.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
.Fields.Update
End With
With Mens
 Set .Configuration = Config
 .From = "xxxx@dominioenvia.com.br"
 .ReplyTo = "xxxx@dominioenvia.com.br"
 .BodyPart.Charset = "utf-8"
 .Subject = "teste"
 .HTMLBody = "teste"
 .To = "xxxx@dominiorecebe.com.br"
 .Send
End With
Set Mens = Nothing
Set Config = Nothing
%>

Aparentemente o codigo funciona porém o problema que estou enfrentando é que em vez de receber como remetente o email xxxx@dominioenvia.com.br estou recebendo o email de autenticação como remetente xxxxxx@gmail.com

Alguém pode me ajudar, ou sabe o que pode estar acontecendo?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...