Recent Changes - Search:

edit SideBar


Firefox 2
Get Thunderbird!

SendHtmlEmailViaSmtpWithAttachment

Perl.SendHtmlEmailViaSmtpWithAttachment History

Hide minor edits - Show changes to markup

October 28, 2005, at 02:17 AM by 85.105.66.26
Changed lines 1-2 from:

SMPT sunucuya bağlanarak, HTML formatında iletili e-posta g�ndermek:

to:

SMPT sunucu �zerinden, HTML formatında iletili e-posta g�ndermek:

October 28, 2005, at 02:17 AM by 85.105.66.26
Changed lines 1-2 from:

SMPT sunucuya bağlanarak, iletili, HTML formatında e-posta g�ndermek:

to:

SMPT sunucuya bağlanarak, HTML formatında iletili e-posta g�ndermek:

October 28, 2005, at 02:12 AM by 85.105.66.26
Added lines 1-26:

SMPT sunucuya bağlanarak, iletili, HTML formatında e-posta g�ndermek:

(:code:) #!/usr/bin/perl # # Bir SMTP sunucuya baglanarak HTML format&#305;nda iletili e-posta g�nderme. # Kaynak: http://search.cpan.org/~jenda/Mail-Sender-0.8.10/Sender.pm # use strict; use warnings; use Mail::Sender; my $sender = new Mail::Sender {smtp => 'mail.kozgun.net', from => '[email protected]', debug => 'debug.txt', auth => "LOGIN", authid => '[email protected]', authpwd => "burayasifremgelir", ctype => 'text/html', encoding => 'ISO8859-9' }; $sender->MailFile({to => '[email protected]', subject => 'Heyyo Test kedi', msg => "I'm <b>sending</b> you the list you wanted.", file => '/home/ozgun/bin/kedi.jpg'});

Edit - History - Print - Recent Changes - Search
Page last modified on October 28, 2005, at 02:17 AM