Hi
I have been writing this doubt in many forums but not receiving any answer.So if anybody can help me,I would really appreciate that
I am working on a maintanance project.The project is online job application system in which candidates enter their details and upload resumes and cover letters.When they finish entering details,and hit the submit button internally these details will be converted to a pdf and will be sent back to the candidate as a mail attachment and a copy will be saved to webserver //ACTS/HR-Uploads/ .Now they want to change the location of the server and move to some other server location.So I searched the entire source documents but didn't find any code which converts these details to pdf.So I don't understand where I have to modify this code.
The only code that I find related to pdf is this where spath is the location of web server and the format.But I understood that it doesn't contain code to save the pdf.
Try
sPath = HRUploadsPath + "Applications\"
sPath = sPath & txtUser_Rec_ID.text & "_" & txtJob.text
sPath = sPath & ".pdf"
SmtpMail.SmtpServer = "Gibbes.CofC.edu"
objMailMessage = New MailMessage()
objMailMessage.From = jobs@cofc.edu
Dim atcItem As New MailAttachment(sPath) objMailMessage.Attachments.Add(atcItem)
If anybody can help me in this ,I would really appreciate that
Thanks in advance
Deepa