Click here to Skip to main content
15,886,519 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Send lots of email Pin
Elham M9-Oct-11 3:26
Elham M9-Oct-11 3:26 
GeneralRe: Send lots of email Pin
André Kraak9-Oct-11 3:52
André Kraak9-Oct-11 3:52 
GeneralRe: Send lots of email Pin
OriginalGriff9-Oct-11 1:41
mveOriginalGriff9-Oct-11 1:41 
GeneralRe: Send lots of email Pin
Elham M9-Oct-11 3:16
Elham M9-Oct-11 3:16 
QuestionWeb Service access in a web page Pin
devboycpp8-Oct-11 17:08
devboycpp8-Oct-11 17:08 
AnswerRe: Web Service access in a web page Pin
Morgs Morgan9-Oct-11 23:34
Morgs Morgan9-Oct-11 23:34 
QuestionRe: Web Service access in a web page Pin
devboycpp9-Oct-11 23:47
devboycpp9-Oct-11 23:47 
Questionhow to send bulk mail? Pin
sathyan_82948-Oct-11 6:11
sathyan_82948-Oct-11 6:11 
Hai all,
I want to send bulk mail in asp.net using C#...Front End:Asp.Net with C# and Back End:Sql Server.
Following code is used to sending from gmail only...how i send from yahoo,hotmail,rediffmail,etc...

MailMessage mm = new MailMessage();
mm.From =new MailAddress(FromTextBox.Text);
mm.To.Add(ToTextBox.Text);
if (FileUpload1.HasFile)
{
Attachment at = new Attachment(FileUpload1.PostedFile.FileName);
mm.Attachments.Add(at);
}
mm.Subject = SubjectTextBox.Text;
mm.Body = MessageTextBox.Text;
SmtpClient sc = new SmtpClient();
sc.Host ="smtp.gmail.com";
sc.Port = 587;

sc.EnableSsl = true;
sc.Credentials =new System.Net.NetworkCredential(FromTextBox.Text,PasswordTextBox.Text);
sc.Send(mm);
Response.Write("Mail Sended");

how to send bulkmail from gmail,yahoo,rediffmail,hotmail etc..
how to attached single and multiple files and images...
how to store sended mail with and without single and multiple attachments...
how to do these all...please any body send code...
thanks in advance...
AnswerRe: how to send bulk mail? Pin
André Kraak9-Oct-11 2:14
André Kraak9-Oct-11 2:14 
QuestionFind Multiview inside Detailsview Pin
GiorgioPower7-Oct-11 22:03
GiorgioPower7-Oct-11 22:03 
AnswerRe: Find Multiview inside Detailsview Pin
Ali Al Omairi(Abu AlHassan)9-Oct-11 23:11
professionalAli Al Omairi(Abu AlHassan)9-Oct-11 23:11 
QuestionHow to use ValueResolver with GUID with the hlep of AutoMapper? Pin
Sunasara Imdadhusen7-Oct-11 19:57
professionalSunasara Imdadhusen7-Oct-11 19:57 
Questionasp.net error checking Pin
classy_dog7-Oct-11 7:06
classy_dog7-Oct-11 7:06 
AnswerRe: asp.net error checking Pin
Not Active7-Oct-11 7:15
mentorNot Active7-Oct-11 7:15 
QuestionForm View with a Gridview control,need help Pin
Member 32222646-Oct-11 18:50
Member 32222646-Oct-11 18:50 
QuestionPublishing a website with Report Viewer Pin
countmein6-Oct-11 15:14
countmein6-Oct-11 15:14 
AnswerRe: Publishing a website with Report Viewer Pin
nainakarri6-Oct-11 23:39
nainakarri6-Oct-11 23:39 
GeneralRe: Publishing a website with Report Viewer Pin
countmein7-Oct-11 3:57
countmein7-Oct-11 3:57 
GeneralRe: Publishing a website with Report Viewer Pin
countmein9-Oct-11 4:01
countmein9-Oct-11 4:01 
GeneralRe: Publishing a website with Report Viewer Pin
nainakarri12-Dec-11 22:27
nainakarri12-Dec-11 22:27 
QuestionRomanizing arabic text Pin
Ali Al Omairi(Abu AlHassan)5-Oct-11 22:54
professionalAli Al Omairi(Abu AlHassan)5-Oct-11 22:54 
AnswerRe: Romanizing arabic text Pin
Bernhard Hiller6-Oct-11 20:11
Bernhard Hiller6-Oct-11 20:11 
GeneralRe: Romanizing arabic text Pin
Ali Al Omairi(Abu AlHassan)8-Oct-11 21:16
professionalAli Al Omairi(Abu AlHassan)8-Oct-11 21:16 
AnswerRe: Romanizing arabic text Pin
Dalek Dave6-Oct-11 22:27
professionalDalek Dave6-Oct-11 22:27 
GeneralRe: Romanizing arabic text Pin
Ali Al Omairi(Abu AlHassan)7-Oct-11 1:06
professionalAli Al Omairi(Abu AlHassan)7-Oct-11 1:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.