Questions tagged «smtp»

简单邮件传输协议(SMTP)是用于跨Internet协议(IP)网络传输电子邮件(e-mail)的Internet标准。

8
使用带有Codeigniter电子邮件库的gmail smtp发送电子邮件
<?php class Email extends Controller { function Email() { parent::Controller(); $this->load->library('email'); } function index() { $config['protocol'] = 'smtp'; $config['smtp_host'] = 'ssl://smtp.gmail.com'; $config['smtp_port'] = '465'; $config['smtp_timeout'] = '7'; $config['smtp_user'] = 'mygmail@gmail.com'; $config['smtp_pass'] = '*******'; $config['charset'] = 'utf-8'; $config['newline'] = "\r\n"; $config['mailtype'] = 'text'; // or html $config['validation'] = TRUE; // bool …
79 php  codeigniter  email  smtp 

4
可以用于测试和开发的本地SMTP服务器-实际上不会传递邮件
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 5年前关闭。 改善这个问题 当我开发一些发送电子邮件的东西时,有时我实际上并不希望发送任何电子邮件,但是我确实想查看使用实时数据发送的电子邮件。但是,这不是一个简单的方法,因为我还没有找到一个本地SMTP服务器来接收我的邮件,然后将其保存在队列中以便我查看。 在Windows XP和Vista中,我使用了本地安装的SMTP服务器,并将其设置为传递到不存在的智能主机上-邮件永远位于“ inetput \ mailroot \ queue”文件夹中,我可以查看它每当我想。但是,在Windows 7中,不再有集成的SMTP服务器,尽管我发现了可以在本地安装并为我中继邮件的许多SMTP服务器,但我希望其中一个不会中继邮件。 有人对如何实现此功能有建议吗?我已经考虑过编写自己的文件,但是如果有什么需要实现整个RFC规范似乎是一项艰巨的任务。也许有一个开放源代码项目,我可以修改它只是将邮件写到磁盘上而不是传递它。
78 windows-7  smtp 

12
无法通过PHPMailer使用Gmail SMTP服务器发送电子邮件,出现错误:在端口587上提交邮件需要SMTP AUTH。如何解决?
我想通过PHP Mailer使用Gmail SMTP服务器发送电子邮件。 这是我的代码 <?php require_once('class.phpmailer.php'); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->CharSet="UTF-8"; $mail->SMTPSecure = 'tls'; $mail->Host = 'smtp.gmail.com'; $mail->Port = 587; $mail->Username = 'MyUsername@gmail.com'; $mail->Password = 'valid password'; $mail->SMTPAuth = true; $mail->From = 'MyUsername@gmail.com'; $mail->FromName = 'Mohammad Masoudian'; $mail->AddAddress('anotherValidGmail@gmail.com'); $mail->AddReplyTo('phoenixd110@gmail.com', 'Information'); $mail->IsHTML(true); $mail->Subject = "PHPMailer Test Subject via Sendmail, basic"; …
77 php  smtp  gmail  phpmailer 

6
如何在C#中对SMTP进行身份验证
我创建使用SMTP发送消息的新ASP.NET Web应用程序。问题是smtp未被发送邮件的人验证。 如何在程序中对SMTP进行身份验证?C#是否具有一个具有用于输入用户名和密码的属性的类?

3
从Web.Config中的电子邮件友好显示名称存储Smtp
我将邮件设置存储在Web配置中,就像这样... <mailSettings> <smtp from="splidge@findremovalcompanies.com"> <network host="smtp.findremovalcompanies.com" userName="splidge@findremovalcompanies.com" password="password" /> </smtp> </mailSettings> 现在当我创建一个新的 var smtp = new SmtpClient(); smpt具有我的凭据,并且会将发件人地址默认为splidge@findremovalcompanies.com,这使我不必每次都这样做。 MailAddress("splidge@findremovalcompanies.com", "Splidge Master") 但是我不知道如何在web.config中指定友好的显示名称“ Splidge Master”,没有设置吗?
74 .net  smtp  web-config 

8
无法通过“ localhost”端口25连接到邮件服务器
当我尝试使用PHP发送电子邮件时,我总是收到此错误消息: Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\dressoholic\register.php on line 50 我的php.ini看起来像这样: [mail function] ; For Win32 only. ; http://php.net/smtp SMTP = localhost ; http://php.net/smtp-port smtp_port = 25 ; For Win32 only. …
71 php  email  smtp 


2
我可以通过Office365共享邮箱发送SMTP电子邮件吗?
我们正在考虑迁移到O365;但是,我们开发了使用当前Exchange服务器将错误发生时既发送给外部用户又发送给支持箱的电子邮件的软件。 我已经对此进行了测试,以确保我们已有的代码将继续与O365配合使用,但到目前为止,我还没有取得很大的成功。 我尝试过使用.Net的SmtpClient以及MailKit的SmtpClient,但似乎都无法使用。我不断收到错误消息(这是MailKit发出的错误-.Net错误类似) “ AuthenticationInvalidCredentials:5.7.3身份验证失败[* .prod.exchangelabs.com]” 我可以使用代码中的凭据登录OWA,因此我知道这些凭据是有效的。无法通过O356发送电子邮件吗?为了使之成为可能,Exchange中是否必须进行任何特殊配置? 到目前为止,这是我尝试过的: MailKit var msg = new MimeMessage(); msg.From.Add(new MailboxAddress("Support","support@mydomain.com")); msg.To.Add(new MailboxAddress("Me","me@mydomain.com")); msg.To.Add(new MailboxAddress("External User","euser@externaldomain.com")); msg.Subject = "Test"; msg.Body = new TextPart("plain"){ Text = "Here is a message for you" }; using(var client = new SmtpClient()){ client.ServerCertificateValidationCallback = (s,c,h,e) => true; client.AuthenticationMechanisms.Remove("XOAUTH2"); //Not sure …
13 c#  .net  smtp  office365  mailkit 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.