⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mail2.pl

📁 bonddb 是一个源于PostgreSQL封装包的对象。它是一个由C/C++编写的快速数据提取层应用软件
💻 PL
字号:
#!/usr/bin/perl#use Mail::Sendmail 0.75; # doesn't work with v. 0.74!$html = <<END_HTML;END_HTML%mail = (	SMTP => 'loki.localnet',	from => 'andru@treshna.com',	to => ($ARGV[0] eq '') ? 'andru@treshna.com' : $ARGV[0],	subject => ($ARGV[1] eq '') ? 'BOND DB Report' : $ARGV[1],	'content-type' => 'text/html; charset="iso-8859-1"',);while (<STDIN>) {	$html .= $_;}$mail{body} = <<END_OF_BODY;	<html>$html</html>END_OF_BODYsendmail(%mail) || print "Error: $Mail::Sendmail::error\n";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -