我写了一个C#程序来发送电子邮件,它工作得很好。此外,我有一个PHP脚本来发送电子邮件,这也是完美的。
但我的问题是:有没有可能用C#发送电子邮件,就像你从PHP中发送电子邮件一样,你不需要指定凭证、服务器、端口等。
我想使用C#而不是PHP,因为我正在创建一个ASP.NET Web应用程序。
下面是我的C#代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.Mail;
using System.Net;
namespace $rootnamespace$
{
public partial class $safeitemname$ : Form
{
public $safeitemname$()
{
InitializeComponent();
}
private void AttachB_Click(object sender, EventArgs e)
{
if (AttachDia.ShowDialog() == DialogResult.OK)
{
string AttachF1 = AttachDia.FileName.ToString();
AttachTB.Text = AttachF1;
AttachPB.Visible = true;
AttachIIB.Visible = true;
AttachB.Visible = false;
}
}
private void AttachIIB_Click(object sender, EventArgs e)
{
if (AttachDia.ShowDialog() == DialogResult.OK)
{
string AttachF1 = AttachDia.FileName.ToString();
AttachIITB.Text = AttachF1;
AttachPB.Visible = true;
}
}
private void SendB_Click(object sender, EventArgs e)
{
try
{
SmtpClient client = new SmtpClient(EmailSmtpAdresTB.Text);
client.EnableSsl = true;
client.Timeout = 20000;
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.UseDefaultCredentials = false;
client.Credentials = new NetworkCredential(EmailUserNameTB.Text, EmailUserPasswordTB.Text);
MailMessage Msg = new MailMessage();
Msg.To.Add(SendToTB.Text);
Msg.From = new MailAddress(SendFromTB.Text);
Msg.Subject = SubjectTB.Text;
Msg.Body = EmailTB.Text;
/// Add Attachments to mail or Not
if (AttachTB.Text == "")
{
if (EmailSmtpPortTB.Text != null)
client.Port = System.Convert.ToInt32(EmailSmtpPortTB.Text);
client.Send(Msg);
MessageBox.Show("Successfuly Send Message !");
}
else
{
Msg.Attachments.Add(new Attachment(AttachTB.Text));
Msg.Attachments.Add(new Attachment(AttachIITB.Text));
if (EmailSmtpPortTB.Text != null)
client.Port = System.Convert.ToInt32(EmailSmtpPortTB.Text);
client.Send(Msg);
MessageBox.Show("Successfuly Send Message !");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void settingsBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.settingsBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.awDushiHomesDBDataSet);
}
private void awDushiHomesEmail_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'awDushiHomesDBDataSet.Settings' table. You can move, or remove it, as needed.
this.settingsTableAdapter.Fill(this.awDushiHomesDBDataSet.Settings);
}
}
}
字符串
这就是PHP中的实现方式:
<?php
//define the receiver of the email
$to = 'test@hotmail.com';
//define the subject of the email
$subject = 'Test email with attachment';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com";
//add boundary string and mime type specification
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents('PDFs\Doc1.pdf')));
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Hello World!!!
This is simple text email message.
--PHP-alt-<?php echo $random_hash; ?>
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is something with <b>HTML</b> formatting.</p>
--PHP-alt-<?php echo $random_hash; ?>--
--PHP-mixed-<?php echo $random_hash; ?>
Content-Type: application/zip; name="Doc1.pdf"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
<?php echo $attachment; ?>
--PHP-mixed-<?php echo $random_hash; ?>--
<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
型
我不要求你写我的代码,但也许你可以提供一些信息,或让我知道,如果它可能与否。
编辑:
我的问题不是关于不使用smtp服务器,而是如何发送电子邮件,而不必输入用户名和密码。我知道,它只会工作,如果请求发送电子邮件来自我的服务器。
6条答案
按热度按时间dxpyg8gm1#
在PHP中,您可以发送邮件而不指定SMTP凭据的原因是其他人已经为您配置了php.ini或sendmail.ini(PHP解释器用于获取某些值的文件)。
这通常是托管主机的情况(或者如果您在开发PC上使用PHP和AMPPS之类的工具,这可以让您轻松地通过UI编辑SMTP设置并忘记它)。
在ASP.NET/ C#中有app.config或web.config文件,您可以在其中注入SMTP设置(在
<mailSettings>
标记中),从而实现与PHP相同的结果(SmtpClient
将自动使用存储在那里的凭据)。请检查以下问题以获取示例:
SmtpClient and app.config system.net configuration的
SMTP Authentication with config file's MailSettings的
7uzetpgm2#
在这些帖子中,这可能是重复的,你会发现几种使用ASP.NET发送电子邮件的方法。
**注意:**如果没有smtp服务器,您无法发送电子邮件,但如果其他人允许您使用他们的服务器,则您不需要自己的服务器。
w1jd8yoj3#
如果你的服务器上安装了php,你可以简单地通过php的主函数发送电子邮件。你不需要证件。
php内置的电子邮件发送功能是
字符串
您可以使用此代码进行详细了解
型
h9vpoimq4#
字符串
在操作系统中安装sendmail
型
创建文件test-mail.php
在内部编写代码:
型
邮件将发送到test_to@abc.com
注:您不需要; t需要写用户名/密码。
uklbhaso5#
您可以在Web应用程序的web.config文件中配置邮件设置部分,如下所示。如果您的网站由第三方托管公司托管,您可以向他们询问smtp详细信息(smtp用户名,smtp密码,服务器名称或IP和端口号)。如果您在web.config中有此配置,并且(在服务器上)启用了SMTP,那么您应该能够发送电子邮件,而不需要在C#代码中指定凭据。
字符串
ndasle7k6#
您可以在没有SMTP或“没有”凭据的情况下发送邮件吗:不..
如果你不想在你的php文件中写入你的凭证(在开发阶段),你可以使用
.env
https://github.com/vlucas/phpdotenv
.env
文件示例:字符串
然后你可以在php文件中使用这些env变量:
型
你也可以加密.env文件或设置没有公共访问.但这些都不是最重要的安全问题有人应该关心..如果有人闯入你的服务器,你已经有麻烦了。
我不是一个.NET MVC开发人员,但你也可以set environmental variables(在开发阶段)
无论如何,你需要在某个地方写它们,或者它们已经写好了..而且这不是一个大的安全问题,除非你把你的代码发布到github等地方。
注意:环境变量可能会导致生产中的性能问题,特别是在PHP中