Share vb.net send email

ngo1947

New member
### Cách gửi email trong vb.net

**Tổng quan**

Trong hướng dẫn này, bạn sẽ tìm hiểu cách gửi email trong vb.net.Chúng tôi sẽ đề cập đến các chủ đề sau:

* Tạo một đối tượng thư
* Thêm người nhận, chủ đề và cơ thể vào tin nhắn
* Gửi tin nhắn

** Điều kiện tiên quyết **

Để làm theo với hướng dẫn này, bạn sẽ cần những điều sau đây:

* Visual Studio 2019 trở lên
* [System.net.mail] (System.Net.Mail Namespace) không gian tên

** Tạo một đối tượng tin nhắn thư **

Bước đầu tiên để gửi email là tạo đối tượng `mailmessage`.Đối tượng này đại diện cho thông báo email mà bạn sẽ gửi.Để tạo đối tượng `mailmessage`, bạn có thể sử dụng mã sau:

`` `VBNet
Thông điệp mờ như mailmessage mới ()
`` `

** Thêm người nhận **

Bước tiếp theo là thêm người nhận vào thông báo email.Bạn có thể làm điều này bằng cách sử dụng các thuộc tính `to`,` cc` và `bcc` của đối tượng` mailmessage`.Thuộc tính `to` chỉ định những người nhận sẽ nhận được tin nhắn email trực tiếp.Thuộc tính `CC` chỉ định những người nhận sẽ nhận được một bản sao của tin nhắn email.Tài sản `BCC` chỉ định những người nhận sẽ nhận được một bản sao carbon mù của tin nhắn email.

Để thêm người nhận, bạn có thể sử dụng mã sau:

`` `VBNet
message.to.add ("người nhậ[email protected]")
`` `

Bạn cũng có thể thêm nhiều người nhận bằng cách sử dụng phương thức `addRange`.Ví dụ: mã sau đây thêm hai người nhận vào thông báo email:

`` `VBNet
message.to.addrange ("người nhậ[email protected]", "[email protected]")
`` `

** Đặt chủ đề và cơ thể **

Bước tiếp theo là đặt chủ đề và phần thân của tin nhắn email.Bạn có thể làm điều này bằng cách sử dụng các thuộc tính `chủ thể` và` body` của đối tượng `mailmessage`.Thuộc tính `chủ thể` chỉ định chủ đề của thông báo email.Thuộc tính `Body` chỉ định phần thân của tin nhắn email.

Để đặt chủ đề, bạn có thể sử dụng mã sau:

`` `VBNet
message.subject = "Đây là chủ đề của tin nhắn email"
`` `

Để đặt thân, bạn có thể sử dụng mã sau:

`` `VBNet
message.body = "Đây là phần thân của tin nhắn email"
`` `

** Gửi tin nhắn **

Bước cuối cùng là gửi tin nhắn email.Bạn có thể làm điều này bằng cách sử dụng phương thức `send` của đối tượng` mailmessage`.

Để gửi tin nhắn email, bạn có thể sử dụng mã sau:

`` `VBNet
message.send ()
`` `

**Ví dụ**

Mã sau đây hiển thị một ví dụ về cách gửi tin nhắn email trong vb.net:

`` `VBNet
Thông điệp mờ như mailmessage mới ()
message.to.add ("người nhậ[email protected]")
message.subject = "Đây là chủ đề của tin nhắn email"
message.body = "Đây là phần thân của tin nhắn email"
message.send ()
`` `

**Phần kết luận**

Trong hướng dẫn này, bạn đã học cách gửi email trong vb.net.Bạn đã học cách tạo một đối tượng thư, thêm người nhận, đặt chủ đề và cơ thể và gửi tin nhắn.

### hashtags

* #vb.net
* #Email
* #thư
* #SMTP
* #gửi
=======================================
### How to Send Email in VB.NET

**Overview**

In this tutorial, you will learn how to send email in VB.NET. We will cover the following topics:

* Creating a mail message object
* Adding recipients, subject, and body to the message
* Sending the message

**Prerequisites**

To follow along with this tutorial, you will need the following:

* Visual Studio 2019 or later
* The [System.Net.Mail](https://docs.microsoft.com/en-us/dotnet/api/system.net.mail) namespace

**Creating a Mail Message Object**

The first step to sending an email is to create a `MailMessage` object. This object represents the email message that you will be sending. To create a `MailMessage` object, you can use the following code:

```vbnet
Dim message As New MailMessage()
```

**Adding Recipients**

The next step is to add recipients to the email message. You can do this by using the `To`, `Cc`, and `Bcc` properties of the `MailMessage` object. The `To` property specifies the recipients who should receive the email message directly. The `Cc` property specifies the recipients who should receive a copy of the email message. The `Bcc` property specifies the recipients who should receive a blind carbon copy of the email message.

To add a recipient, you can use the following code:

```vbnet
message.To.Add("[email protected]")
```

You can also add multiple recipients by using the `AddRange` method. For example, the following code adds two recipients to the email message:

```vbnet
message.To.AddRange("[email protected]", "[email protected]")
```

**Setting the Subject and Body**

The next step is to set the subject and body of the email message. You can do this by using the `Subject` and `Body` properties of the `MailMessage` object. The `Subject` property specifies the subject of the email message. The `Body` property specifies the body of the email message.

To set the subject, you can use the following code:

```vbnet
message.Subject = "This is the subject of the email message"
```

To set the body, you can use the following code:

```vbnet
message.Body = "This is the body of the email message"
```

**Sending the Message**

The final step is to send the email message. You can do this by using the `Send` method of the `MailMessage` object.

To send the email message, you can use the following code:

```vbnet
message.Send()
```

**Example**

The following code shows an example of how to send an email message in VB.NET:

```vbnet
Dim message As New MailMessage()
message.To.Add("[email protected]")
message.Subject = "This is the subject of the email message"
message.Body = "This is the body of the email message"
message.Send()
```

**Conclusion**

In this tutorial, you learned how to send email in VB.NET. You learned how to create a mail message object, add recipients, set the subject and body, and send the message.

### Hashtags

* #vb.net
* #Email
* #Mail
* #SMTP
* #Send
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top