Gmail and SMTP
-
This post is being processed/translated. The original version will be shown:
Hola !
Todos sabemos lo bueno que es gmail.
Estoy buscando un programita que envie correos a traves del servidor SMTP de gmail.
Los requisitos de gmail son estos:
Outgoing Mail (SMTP) Server - requires TLS: smtp.gmail.com (use authentication)
Use Authentication: Yes
Use STARTTLS: Yes (some clients call this SSL)
Port: 465 or 587
Account Name: your Gmail username (including '@gmail.com')
Email Address: your full Gmail email address (username@gmail.com)
Password: your Gmail passwordVamos en cristiano:
Servidor de salida: smtp.gmail.com
Puerto: 465 o 587
SSL: Si
Autenticacion : Si
el resto es lo tipico.Conoceis algun programita configurable para enviar correos y que se puedan parametrizar estos datos.
Programa plano, no grafico, ejecutable, o algo asi. Es para lanzar en batch desde otro programa.Saludos
-
This post is being processed/translated. The original version will be shown:
No se que quieres decir con lanzar en batch desde otro programa, pero yo ahora uso el Thunderbird y funciona sin problemas. Antes usaba el Outlook Express y tambien iba bien. Lo unico que tienes que hacer es activar el sercio POP3 y SMTP de tu cuenta de correo Gmail.
-
This post is being processed/translated. The original version will be shown:
lo que quiero es enviar correos, solamente envio de correos, pero sin utilizar ningun cliente.
un programita que lance correos y que se ejecute cuando yo le diga con el gestor de tareas de windows por ejemplo.
con un codigo de este pelo, pero no se implementarlo:
set mm = CreateObject("ChilkatMail2.ChilkatMailMan2")
mm.UnlockComponent "test"' SMTP server: smtp.gmail.com.
' Port: 465.
' Require SSL/STARTTLS: Yes.
' Require SMTP authentication: Yes.
' User name: your Gmail email address.
' Password: your Gmail password.mm.SmtpHost = "smtp.gmail.com"
mm.SmtpPort = 465
mm.SmtpSsl = 1
mm.SmtpUsername = ""
mm.SmtpPassword = ""set email = CreateObject("ChilkatMail2.ChilkatEmail2")
email.Subject = "test from Chilkat"
email.Body = "this is a test for our customer"
email.AddTo "Chilkat Support","support@chilkatsoft.com"
email.From = SmtpUsernamemm.SendEmail email
MsgBox mm.LastErrorText
mm.SaveLastError "error.txt"saludos
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Registrarse Conectarse