473,796 Members | 2,599 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Delphi 2007 SMTP send email

3 New Member
I can't really know what's wrong with my code, plz I need help, thx

the Words underlined here, r underlined in Delphi(error)
Expand|Select|Wrap|Line Numbers
  1. unit mailer;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  7.   Dialogs, StdCtrls, IdMessage, IdBaseComponent, IdComponent, IdTCPConnection,
  8.   IdTCPClient, IdExplicitTLSClientServerBase, IdMessageClient, IdSMTPBase,
  9.   IdSMTP;
  10.  
  11. type
  12.   TForm3 = class(TForm)
  13.     edTo: TEdit;
  14.     edFrom: TEdit;
  15.     edSubject: TEdit;
  16.     edCC: TEdit;
  17.     edBC: TEdit;
  18.     Memo1: TMemo;
  19.     Label1: TLabel;
  20.     Label2: TLabel;
  21.     Label3: TLabel;
  22.     Label4: TLabel;
  23.     Label5: TLabel;
  24.     lvAttachments: TListBox;
  25.     btBrowse: TButton;
  26.     btMsg: TButton;
  27.     CheckBox1: TCheckBox;
  28.     OpenDialog1: TOpenDialog;
  29.     Label6: TLabel;
  30.     IdSMTP1: TIdSMTP;
  31.     IdMessage1: TIdMessage;
  32.     procedure btMsgClick(Sender: TObject);
  33.     procedure btBrowseClick(Sender: TObject);
  34.     procedure AddAttachments;
  35.   private
  36.     { Private declarations }
  37.   public
  38.     { Public declarations }
  39.   end;
  40.  
  41. var
  42.   Form3: TForm3;
  43.  
  44. implementation
  45. uses idreplysmtp;
  46.  
  47. {$R *.dfm}
  48.  
  49.  
  50. procedure Tform3.AddAttachments;
  51. var li: TListItem;
  52. idx: Integer;
  53. //clear the attachment listview
  54. lvAttachments.Items.Clear;
  55. //loop through Idmessage and count parts
  56. for idx := 0 to Pred(Idmessage.MessageParts.Count) do
  57. begin
  58. li := lvAttachments.Items.Add;
  59. // Check if Idmessage contains any attachments…
  60.  
  61. if Idmessage.MessageParts.Items[idx] is TIdAttachmentFile then
  62. begin
  63. //if so, get the file names…
  64. li.Caption  :=
  65. TIdAttachmentFile(Idmessage.MessageParts.Items[idx]).Filename;
  66. //and add them to the listview li.SubItems.Add(TIdAttachmentFile(Idmessage.MessageParts.Items[idx]).ContentType);
  67. end
  68. else
  69. begin
  70. li.Caption  := Idmessage.MessageParts.Items[idx].ContentType;
  71. end;
  72. end;
  73. end;
  74.  
  75.  
  76.  
  77.  
  78. procedure TForm3.btBrowseClick(Sender: TObject);
  79. begin
  80. if opendialog.Execute then
  81. TIdAttachmentFile.Create(idmessage.MessageParts,
  82. opendialog.FileName);
  83. AddAttachments;
  84.  
  85. end;
  86.  
  87. procedure TForm3.btMsgClick(Sender: TObject);
  88. begin
  89.   //setup idSMTP connection parameters
  90. idSMTP.Host :=your host name;
  91. idSMTP.Port := 25; //smtp service usually
  92. runs on this port
  93. idSMTP.Password:=your password;
  94. end;
  95. //setup
  96. idmessage parameters
  97. idmessage.From.address:=edFrom.Text;
  98. idmessage.Recipients.EMailAddresses:=edTo.Text;
  99. idmessage.CCList.EMailAddresses:=edCC.Text;
  100. idmessage.BccList.EMailAddresses:=edBC.Text;
  101. idmessage.Subject :=edSubject.Text;
  102. idmessage.Body.Text := memo1.Lines.Text;
  103. //check if receipt confirmation is required
  104. if checkbox1.checked then
  105. //if required, set the sendback email
  106. address to your email address
  107. idmessage.ReceiptRecipient.Text:=edfrom.Text;
  108. //send the message
  109. try
  110. try
  111. idSMTP.Connect;
  112. idSMTP.send(idmessage);
  113. //if an exception occurs…
  114. except on E: EIdSMTPReplyError do
  115. begin
  116. //…then show the message
  117. ShowMessage(E.Message);
  118. end;
  119. end;
  120. finally
  121. //disconnect from server
  122. if IdSMTP.Connected then
  123. IdSMTP.Disconnect;
  124. end;
  125. end;
  126.  
  127. end.
Jul 30 '08 #1
1 6115
Stang02GT
1,208 Recognized Expert Top Contributor
I added code tags to your post.


When posting ANY code please make sure to utilize the [code] tags.



Thank You.
Jul 31 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
9533
by: Salim Afţar | last post by:
Hi, I'm using CDO object to send email but it doesn't send any email and it does not give an error. My code look like this: Dim iMsg2 Dim iConf2 Dim Flds2 Const cdoSendUsingPort = 2 set iMsg2 = CreateObject("CDO.Message")
9
4312
by: Bob Jones | last post by:
We have developed a commercial ASP.net application (personal nutrition management and tracking); we want to send smtp email from within it. For our development box, we use WinXP Pro, IIS 5.5, VisualStudio2002, VB as programing language. Our test/development version of the web app as hosted on our "localhost" works fine; our "Default SMTP Virtual Server" is running (per the IIS console).
5
8798
by: Andreas | last post by:
I am working with three computers, my developing computer, a Web Server and a Mail Server (Exchange). I am trying to send a email from the Web Server via the Mail Server to a valid email address with this code: MailMessage msgMail = new MailMessage(); msgMail.To = "test@address.com"; msgMail.From = "from@address.com"; msgMail.Subject = "Mail Example Subject";
4
2260
by: CLEAR-RCIC | last post by:
I want to send an email from our Intranet site to myself whenever an error happens. Our manager will not let us install SMTP on the web server. Is it possible to send email programatically without SMTP installed?
2
1896
by: =?Utf-8?B?Y2hpZWtv?= | last post by:
Hello, I have Asp.net 2.0 app that needs to send an email. It works fine when the app tries to send inside of the network, but I can’t send email outside. Does anyone know how I can resolve the problem? My code is as follows: Dim objMail As New System.Net.Mail.MailMessage 'populage info objMail.From = New MailAddress(“admin@mail.com”)
16
4759
by: =?Utf-8?B?Q2hlZg==?= | last post by:
I can use outlook2003 to send email,but I cann't use this code below to send email. Please help me to test this code and instruct me how to solve this problem in detail. software environment: VS2005 + XP.-- I have disabled firewall hardware enviornmnet:telcom's modem connects hub,hub connects two computers.。-- I also tried to connect computer to modem directly,but I can
16
3009
by: bgreer5050 | last post by:
I have a form with the following fields: UserEmail Subject Body When the form is submitted, the email is processed fine. When I try to add another field to the mm.body (mm.Body = Body.Text & Listbox1.SelectedItem.Text) the smtp.Send fails. Any ideas ?
5
2164
by: Mike | last post by:
I have a page with a textbox that a user can enter in mutliple email addresses such as: user1@yahoo.com;user2@yahoo.com;user3@gmail.com; and so on, I then have a foreach loop to get all of the emaill addresses and send emails out. the problem is that all of the email addresses the email is being sent to is showing in the section so everyone knows who's getting the email. How can I have 1 email address showing in the section so no...
14
8364
by: Warren Tang | last post by:
Hi I am using the mail function to send a mail like this: $b = mail("my_real_email_address@gmail.com", "Hello from PHP", "Hi, finally sent an email successfully"); But it failed. Could you guide me to get it work? Regards
0
10461
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10239
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10190
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10019
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9057
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7555
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6796
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3736
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2928
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.