Create or Replace Procedure RR_SendMail
-- Written by Ranjeet Rain (ranjeet.rain@gmail.com) -- You found this code at http://expertnotes.blogspot.com/ (Sender IN VARCHAR2, SendTo IN VARCHAR2, Subject IN VARCHAR2, BodyText IN VARCHAR2, MailHost IN VARCHAR2, SmtpPort IN NUMBER := 25, CCTo IN VARCHAR2 := NULL, MailFormat IN VARCHAR2 := 'text', -- text or text/html Priority IN NUMBER := 3 -- 3 = Medium, 5 = Low, 1 = High ) IS v_mail_conn UTL_SMTP.connection; v_mailhost VARCHAR2(64) := MailHost; n_smtpport VARCHAR2(4) := SmtpPort; v_subject VARCHAR2(64) := Subject; v_from VARCHAR2(64) := Sender; v_to VARCHAR2(64) := SendTo; v_CC VARCHAR2(64) := CCTo; v_bodytext VARCHAR2(1240) := BodyText; BEGIN v_mail_conn := UTL_SMTP.open_connection(v_mailhost, n_smtpport); UTL_SMTP.helo(v_mail_conn, v_mailhost); UTL_SMTP.mail(v_mail_conn, v_from); UTL_SMTP.rcpt(v_mail_conn, v_to); UTL_SMTP.open_data(v_mail_conn); utl_smtp.write_data(v_mail_conn, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || utl_tcp.crlf || 'From: ' || v_from || utl_tcp.crlf || 'To: ' || v_to || utl_tcp.crlf || 'CC: ' || v_CC || utl_tcp.crlf || 'Subject: ' || v_subject || utl_tcp.crlf || 'X-Priority: ' || Priority || utl_tcp.crlf || 'Content-Type: ' || MailFormat || utl_tcp.crlf ); utl_smtp.write_data (v_mail_conn, v_bodytext); UTL_SMTP.close_data(v_mail_conn); UTL_SMTP.quit(v_mail_conn); EXCEPTION WHEN UTL_SMTP.INVALID_OPERATION THEN dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.'); WHEN UTL_SMTP.TRANSIENT_ERROR THEN dbms_output.put_line(' Temporary e-mail issue - try again'); WHEN UTL_SMTP.PERMANENT_ERROR THEN dbms_output.put_line(' Permanent Error Encountered.'); WHEN OTHERS THEN dbms_output.put_line(' Unknown Error Occured.'); END;How do you use this code? See some sample usage.
-- Send a plain vanilla mail with just 5 parameters EXEC RR_sendmail ('ranjeet.rain@gmail.com', 'ranjeet.rain@gmail.com', 'Subject', 'Body text', 'Mail_host_name') -- Send a plain vanilla mail using a host running on Secure SMTP EXEC RR_sendmail ('ranjeet.rain@gmail.com', 'ranjeet.rain@gmail.com', 'Subject', 'Body text', 'smtp.gmail.com', 465) -- Send a text mail with a CC EXEC RR_sendmail ('ranjeet.rain@gmail.com', 'ranjeet.rain@gmail.com', 'Subject', 'Body text', '130.1.3.1', 25, 'ranjeet.rain@gmail.com') -- Send a HTML mail with a CC EXEC RR_sendmail ('ranjeet.rain@gmail.com', 'ranjeet.rain@gmail.com', 'Subject',So, as can be seen, the procedure is rather versatile and capable of sending all kind of text-based mails, very useful for sending small notificationmails. Only thing this procdure does not handle is multimedia mails (mail with MIME content). May be in future, if I write anything like that I'll update the page. Till then, happy mailing!!!
'Hello World! from <a href="mailto:ranjeet.rain@gmail.com">Ranjeet</a>', 'Mail_host_name', 25, 'ranjeet.rain@gmail.com', 'text/html') -- Send a high priority HTML mail with a CC EXEC RR_sendmail ('ranjeet.rain@gmail.com', 'ranjeet.rain@gmail.com', 'Subject',
'Hello World! from <a href="mailto:ranjeet.rain@gmail.com">Ranjeet</a>', 'Mail_host_name', 25, 'ranjeet.rain@gmail.com', 'text/html', 1)
1 comment:
Howdy,
I mostly visits this website[url=http://www.weightrapidloss.com/lose-10-pounds-in-2-weeks-quick-weight-loss-tips].[/url]You have really contiributed very good info here expertnotes.blogspot.com. Frankly speaking we really do not pay attention towards our health. Let me show you one truth. Recent Scientific Research indicates that almost 60% of all USA adults are either obese or weighty[url=http://www.weightrapidloss.com/lose-10-pounds-in-2-weeks-quick-weight-loss-tips].[/url] So if you're one of these people, you're not alone. Its true that we all can't be like Brad Pitt, Angelina Jolie, Megan Fox, and have sexy and perfect six pack abs. Now the question is how you are planning to have quick weight loss? Quick weight loss can be achived with little effort. You need to improve some of you daily habbits to achive weight loss in short span of time.
About me: I am blogger of [url=http://www.weightrapidloss.com/lose-10-pounds-in-2-weeks-quick-weight-loss-tips]Quick weight loss tips[/url]. I am also health expert who can help you lose weight quickly. If you do not want to go under difficult training program than you may also try [url=http://www.weightrapidloss.com/acai-berry-for-quick-weight-loss]Acai Berry[/url] or [url=http://www.weightrapidloss.com/colon-cleanse-for-weight-loss]Colon Cleansing[/url] for quick weight loss.
Post a Comment